-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsearch_engine.py
More file actions
12925 lines (11751 loc) · 464 KB
/
Copy pathsearch_engine.py
File metadata and controls
12925 lines (11751 loc) · 464 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"""检索引擎 - PubMed + OpenAlex 聚合检索(增强版)
支持 PubMed 字段标签语法:
keyword[ti] - 标题搜索
keyword[tiab] - 标题+摘要搜索
keyword[au] - 作者搜索
keyword[ta] - 期刊名搜索
keyword[mh] - MeSH 主题词
keyword[tw] - 自由词(Title/Abstract/Keywords)
布尔运算:AND / OR / NOT
年份过滤:2020:2025[pdat]
示例:
super-resolution microscopy[ti]
Nature Methods[ta] AND single-molecule[tiab]
(expansion microscopy[ti] OR light-sheet[ti]) AND 2023:2025[pdat]
"""
import re
import sys
import math
import time
import json
import hashlib
import threading
import xml.etree.ElementTree as ET
from collections import OrderedDict
from datetime import datetime
from dataclasses import dataclass, field
from typing import List, Optional
from concurrent.futures import (
ThreadPoolExecutor,
as_completed,
TimeoutError as FuturesTimeoutError,
)
import requests
from access_proxy import EZproxyRewriter
from dedup import deduplicate_papers
def _contains_chinese(text: str) -> bool:
"""检测文本是否包含中文字符"""
if not text:
return False
# CJK Unified Ideographs 范围
return bool(re.search(r"[一-鿿]", text))
def _extract_chinese_keywords(text: str) -> set:
"""从中文文本中提取关键词(简单空格分词)"""
if not text:
return set()
# 中文按空格分词,过滤短词
words = set()
for w in re.split(r"\s+", text.strip()):
w = w.strip()
if len(w) >= 2: # 中文词至少2个字
words.add(w)
return words
# 常用中文学术术语翻译字典(离线翻译,无需API)
# 覆盖:材料科学、化学、生物医学、物理天文、工程技术、环境地球科学、社会科学
_ZH_EN_DICT = {
# ========== 材料科学 ==========
"二维": "2D",
"富勒烯": "fullerene",
"电催化": "electrocatalysis",
"石墨烯": "graphene",
"纳米": "nano",
"纳米材料": "nanomaterials",
"催化剂": "catalyst",
"催化": "catalysis",
"光催化": "photocatalysis",
"电化学": "electrochemistry",
"电池": "battery",
"锂离子": "lithium-ion",
"太阳能电池": "solar cell",
"钙钛矿": "perovskite",
"纳米粒子": "nanoparticles",
"纳米线": "nanowire",
"纳米管": "nanotube",
"碳纳米管": "carbon nanotube",
"量子点": "quantum dot",
"薄膜": "thin film",
"涂层": "coating",
"合金": "alloy",
"复合材料": "composite",
"陶瓷": "ceramic",
"聚合物": "polymer",
"水凝胶": "hydrogel",
"生物材料": "biomaterial",
# 材料科学补充
"纳米片": "nanosheet",
"纳米棒": "nanorod",
"纳米花": "nanoflower",
"纳米球": "nanosphere",
"纳米晶": "nanocrystal",
"纳米纤维": "nanofiber",
"量子阱": "quantum well",
"量子线": "quantum wire",
"MXene": "MXene",
"黑磷": "black phosphorus",
"过渡金属硫化物": "transition metal dichalcogenide",
"二硫化钼": "molybdenum disulfide",
"二硫化钨": "tungsten disulfide",
"氮化硼": "boron nitride",
"氮化镓": "gallium nitride",
"碳化硅": "silicon carbide",
"碳化硼": "boron carbide",
"氧化锌": "zinc oxide",
"氧化钛": "titanium dioxide",
"氧化铁": "iron oxide",
"氧化铝": "alumina",
"氧化铈": "ceria",
"氮化硅": "silicon nitride",
"氮化铝": "aluminum nitride",
"钛合金": "titanium alloy",
"铝合金": "aluminum alloy",
"镁合金": "magnesium alloy",
"镍基合金": "nickel-based alloy",
"高温合金": "superalloy",
"形状记忆合金": "shape memory alloy",
"非晶合金": "amorphous alloy",
"高熵合金": "high-entropy alloy",
"碳纤维": "carbon fiber",
"玻璃纤维": "glass fiber",
"芳纶": "aramid fiber",
"碳化硅纤维": "silicon carbide fiber",
"纤维增强": "fiber reinforced",
"层板": "laminate",
"压电材料": "piezoelectric material",
"热电材料": "thermoelectric material",
"铁电材料": "ferroelectric material",
"磁性材料": "magnetic material",
"超导材料": "superconducting material",
"发光材料": "luminescent material",
"光电材料": "optoelectronic material",
"储能材料": "energy storage material",
"阳极氧化": "anodizing",
"电镀": "electroplating",
"化学气相沉积": "chemical vapor deposition",
"物理气相沉积": "physical vapor deposition",
"原子层沉积": "atomic layer deposition",
"溅射": "sputtering",
"分子束外延": "molecular beam epitaxy",
"溶胶凝胶": "sol-gel",
"水热合成": "hydrothermal synthesis",
"溶剂热": "solvothermal",
"共沉淀": "co-precipitation",
"静电纺丝": "electrospinning",
"3D打印": "3D printing",
"X射线衍射": "X-ray diffraction",
"扫描电镜": "scanning electron microscope",
"透射电镜": "transmission electron microscope",
"原子力显微镜": "atomic force microscope",
"X射线光电子能谱": "X-ray photoelectron spectroscopy",
"拉曼光谱": "Raman spectroscopy",
"红外光谱": "infrared spectroscopy",
"热重分析": "thermogravimetric analysis",
"差示扫描量热法": "differential scanning calorimetry",
"比表面积": "specific surface area",
"孔隙率": "porosity",
"吸附": "adsorption",
"脱附": "desorption",
"接触角": "contact angle",
"表面能": "surface energy",
"硬度": "hardness",
"韧性": "toughness",
"强度": "strength",
"延展性": "ductility",
"弹性模量": "elastic modulus",
"疲劳": "fatigue",
"断裂": "fracture",
"蠕变": "creep",
"腐蚀": "corrosion",
"抗氧化": "antioxidant",
"润滑": "lubrication",
"摩擦": "friction",
"磨损": "wear",
# ========== 化学 ==========
"有机": "organic",
"无机": "inorganic",
"分析化学": "analytical chemistry",
"合成": "synthesis",
"反应": "reaction",
"分子": "molecule",
"配位": "coordination",
"金属有机框架": "metal-organic framework",
"MOF": "MOF",
"共价有机框架": "covalent organic framework",
"COF": "COF",
# 有机化学
"官能团": "functional group",
"反应机理": "reaction mechanism",
"加成反应": "addition reaction",
"取代反应": "substitution reaction",
"消除反应": "elimination reaction",
"重排反应": "rearrangement reaction",
"缩合反应": "condensation reaction",
"氧化反应": "oxidation reaction",
"还原反应": "reduction reaction",
"偶联反应": "coupling reaction",
"手性": "chirality",
"立体化学": "stereochemistry",
"对映体": "enantiomer",
"非对映体": "diastereomer",
"共轭": "conjugation",
"芳香性": "aromaticity",
"杂环": "heterocycle",
"酰胺": "amide",
"酯": "ester",
"醚": "ether",
"醛": "aldehyde",
"酮": "ketone",
"羧酸": "carboxylic acid",
"胺": "amine",
"醇": "alcohol",
"腈": "nitrile",
"硝基": "nitro group",
"磺酸基": "sulfonic acid group",
# 无机化学
"配位化合物": "coordination compound",
"配体": "ligand",
"中心原子": "central atom",
"配位数": "coordination number",
"八面体": "octahedral",
"四面体": "tetrahedral",
"金属有机化学": "organometallic chemistry",
"簇合物": "cluster compound",
"氧化态": "oxidation state",
"晶体场理论": "crystal field theory",
"配位场理论": "ligand field theory",
# 分析化学
"色谱": "chromatography",
"高效液相色谱": "high-performance liquid chromatography",
"气相色谱": "gas chromatography",
"核磁共振": "nuclear magnetic resonance",
"紫外可见光谱": "ultraviolet-visible spectroscopy",
"荧光光谱": "fluorescence spectroscopy",
"伏安法": "voltammetry",
"循环伏安法": "cyclic voltammetry",
# 物理化学
"化学平衡": "chemical equilibrium",
"反应速率": "reaction rate",
"活化能": "activation energy",
"过渡态": "transition state",
"反应坐标": "reaction coordinate",
"表面化学": "surface chemistry",
"多相催化": "heterogeneous catalysis",
"均相催化": "homogeneous catalysis",
"吉布斯自由能": "Gibbs free energy",
"化学势": "chemical potential",
"相变": "phase transition",
"胶体": "colloid",
"界面": "interface",
"表面张力": "surface tension",
# 高分子化学
"聚合反应": "polymerization",
"加聚反应": "addition polymerization",
"缩聚反应": "condensation polymerization",
"共聚物": "copolymer",
"嵌段共聚物": "block copolymer",
"交联": "crosslinking",
"引发剂": "initiator",
"单体": "monomer",
"低聚物": "oligomer",
"玻璃化转变温度": "glass transition temperature",
"结晶度": "crystallinity",
"热塑性": "thermoplastic",
"热固性": "thermosetting",
"弹性体": "elastomer",
# 药物化学
"药效团": "pharmacophore",
"构效关系": "structure-activity relationship",
"药代动力学": "pharmacokinetics",
"药效学": "pharmacodynamics",
"生物利用度": "bioavailability",
"半衰期": "half-life",
"血脑屏障": "blood-brain barrier",
"受体": "receptor",
"酶抑制剂": "enzyme inhibitor",
"药物设计": "drug design",
"先导化合物": "lead compound",
"药物筛选": "drug screening",
"细胞毒性": "cytotoxicity",
"抗菌活性": "antimicrobial activity",
"抗肿瘤活性": "antitumor activity",
# 环境化学
"环境污染物": "environmental pollutant",
"持久性有机污染物": "persistent organic pollutant",
"多环芳烃": "polycyclic aromatic hydrocarbons",
"多氯联苯": "polychlorinated biphenyls",
"内分泌干扰物": "endocrine disruptor",
"环境修复": "environmental remediation",
"生物降解": "biodegradation",
"光降解": "photodegradation",
"污水处理": "wastewater treatment",
"微塑料": "microplastic",
# 生物化学
"氨基酸": "amino acid",
"核苷酸": "nucleotide",
"蛋白质折叠": "protein folding",
"酶催化": "enzymatic catalysis",
"辅酶": "coenzyme",
"底物": "substrate",
"代谢途径": "metabolic pathway",
"信号转导": "signal transduction",
"转录因子": "transcription factor",
"表观遗传": "epigenetics",
"基因表达": "gene expression",
"细胞凋亡": "apoptosis",
"细胞自噬": "autophagy",
# 计算化学
"密度泛函理论": "density functional theory",
"分子动力学": "molecular dynamics",
"蒙特卡洛模拟": "Monte Carlo simulation",
"从头算": "ab initio",
"基组": "basis set",
"几何优化": "geometry optimization",
"势能面": "potential energy surface",
"分子轨道": "molecular orbital",
"前线轨道理论": "frontier molecular orbital theory",
"偶极矩": "dipole moment",
"极化率": "polarizability",
"溶剂化模型": "solvation model",
"构象": "conformation",
"活性位点": "active site",
# ========== 生物医学 ==========
"基因": "gene",
"蛋白质": "protein",
"细胞": "cell",
"肿瘤": "tumor",
"癌症": "cancer",
"免疫": "immunity",
"疫苗": "vaccine",
"抗体": "antibody",
"基因编辑": "gene editing",
"CRISPR": "CRISPR",
"干细胞": "stem cell",
"基因组": "genome",
"蛋白质组": "proteomics",
"代谢组": "metabolomics",
"生物信息学": "bioinformatics",
# 分子生物学
"转录": "transcription",
"翻译": "translation",
"信使RNA": "messenger RNA",
"核糖体RNA": "ribosomal RNA",
"转运RNA": "transfer RNA",
"DNA甲基化": "DNA methylation",
"组蛋白": "histone",
"染色质": "chromatin",
"启动子": "promoter",
"增强子": "enhancer",
"外显子": "exon",
"内含子": "intron",
"剪接": "splicing",
"翻译后修饰": "post-translational modification",
"DNA复制": "DNA replication",
"RNA干扰": "RNA interference",
"小干扰RNA": "small interfering RNA",
"微小RNA": "microRNA",
"长链非编码RNA": "long non-coding RNA",
"核酸酶": "nuclease",
"聚合酶": "polymerase",
"连接酶": "ligase",
"限制性内切酶": "restriction endonuclease",
# 细胞生物学
"线粒体": "mitochondria",
"内质网": "endoplasmic reticulum",
"高尔基体": "Golgi apparatus",
"溶酶体": "lysosome",
"核糖体": "ribosome",
"细胞膜": "cell membrane",
"细胞核": "nucleus",
"细胞周期": "cell cycle",
"细胞分裂": "cell division",
"有丝分裂": "mitosis",
"减数分裂": "meiosis",
"细胞迁移": "cell migration",
"细胞分化": "cell differentiation",
"细胞增殖": "cell proliferation",
"细胞粘附": "cell adhesion",
"细胞骨架": "cytoskeleton",
"微管": "microtubule",
"微丝": "microfilament",
"中间丝": "intermediate filament",
"中心体": "centrosome",
"内吞": "endocytosis",
"外排": "exocytosis",
"细胞外基质": "extracellular matrix",
# 免疫学
"T细胞": "T cell",
"B细胞": "B cell",
"自然杀伤细胞": "natural killer cell",
"巨噬细胞": "macrophage",
"树突状细胞": "dendritic cell",
"中性粒细胞": "neutrophil",
"淋巴细胞": "lymphocyte",
"细胞因子": "cytokine",
"干扰素": "interferon",
"白细胞介素": "interleukin",
"肿瘤坏死因子": "tumor necrosis factor",
"主要组织相容性复合体": "major histocompatibility complex",
"免疫检查点": "immune checkpoint",
"炎症": "inflammation",
"补体系统": "complement system",
"自身免疫": "autoimmunity",
"免疫缺陷": "immunodeficiency",
"过敏反应": "hypersensitivity",
"抗原": "antigen",
"细胞毒性": "cytotoxicity",
"吞噬作用": "phagocytosis",
"适应性免疫": "adaptive immunity",
"先天性免疫": "innate immunity",
# 神经科学
"神经元": "neuron",
"突触": "synapse",
"神经递质": "neurotransmitter",
"多巴胺": "dopamine",
"血清素": "serotonin",
"乙酰胆碱": "acetylcholine",
"谷氨酸": "glutamate",
"神经胶质细胞": "glial cell",
"星形胶质细胞": "astrocyte",
"少突胶质细胞": "oligodendrocyte",
"小胶质细胞": "microglia",
"髓鞘": "myelin",
"轴突": "axon",
"树突": "dendrite",
"神经可塑性": "neuroplasticity",
"海马体": "hippocampus",
"大脑皮层": "cerebral cortex",
"下丘脑": "hypothalamus",
"垂体": "pituitary gland",
"脑干": "brainstem",
"神经退行性疾病": "neurodegenerative disease",
"帕金森病": "Parkinson's disease",
"阿尔茨海默病": "Alzheimer's disease",
"突触可塑性": "synaptic plasticity",
"神经发生": "neurogenesis",
# 肿瘤学
"转移": "metastasis",
"原发性肿瘤": "primary tumor",
"良性肿瘤": "benign tumor",
"恶性肿瘤": "malignant tumor",
"腺癌": "adenocarcinoma",
"鳞状细胞癌": "squamous cell carcinoma",
"淋巴瘤": "lymphoma",
"白血病": "leukemia",
"黑色素瘤": "melanoma",
"胶质瘤": "glioma",
"乳腺癌": "breast cancer",
"肺癌": "lung cancer",
"肝癌": "liver cancer",
"胃癌": "gastric cancer",
"结直肠癌": "colorectal cancer",
"前列腺癌": "prostate cancer",
"卵巢癌": "ovarian cancer",
"胰腺癌": "pancreatic cancer",
"化疗": "chemotherapy",
"放疗": "radiation therapy",
"靶向治疗": "targeted therapy",
"免疫治疗": "immunotherapy",
"激素治疗": "hormonal therapy",
"生物标志物": "biomarker",
"肿瘤微环境": "tumor microenvironment",
"细胞周期阻滞": "cell cycle arrest",
"耐药性": "drug resistance",
"血管生成": "angiogenesis",
"上皮间质转化": "epithelial-mesenchymal transition",
# 心血管医学
"动脉粥样硬化": "atherosclerosis",
"心肌梗死": "myocardial infarction",
"心力衰竭": "heart failure",
"高血压": "hypertension",
"心律失常": "arrhythmia",
"冠心病": "coronary artery disease",
"血栓": "thrombosis",
"栓塞": "embolism",
"心肌病": "cardiomyopathy",
# 微生物学
"细菌": "bacteria",
"病毒": "virus",
"真菌": "fungus",
"微生物组": "microbiome",
"抗生素": "antibiotic",
"抗病毒": "antiviral",
"感染": "infection",
"脓毒症": "sepsis",
"肺炎": "pneumonia",
"结核病": "tuberculosis",
"疟疾": "malaria",
"流感": "influenza",
"冠状病毒": "coronavirus",
"肠道菌群": "gut flora",
"抗微生物耐药": "antimicrobial resistance",
# 药理学
"药效动力学": "pharmacodynamics",
"药物靶点": "drug target",
"受体激动剂": "receptor agonist",
"受体拮抗剂": "receptor antagonist",
"抑制剂": "inhibitor",
"激动剂": "agonist",
"拮抗剂": "antagonist",
"不良反应": "adverse reaction",
"药物相互作用": "drug interaction",
"剂量": "dosage",
"药物代谢": "drug metabolism",
"药物递送": "drug delivery",
"纳米药物": "nanomedicine",
"缓释": "sustained release",
"靶向递送": "targeted delivery",
# 中医药学
"中药": "traditional Chinese medicine",
"中医": "traditional Chinese medicine",
"中草药": "Chinese herbal medicine",
"草药": "herbal medicine",
"本草": "materia medica",
"方剂": "formula",
"复方": "compound formula",
"单味药": "single herb",
"针灸": "acupuncture",
"艾灸": "moxibustion",
"推拿": "tuina",
"拔罐": "cupping",
"刮痧": "guasha",
"气功": "qigong",
"中药方剂": "Chinese medicine formula",
"经方": "classical formula",
"验方": "empirical formula",
"单体": "compound",
"有效成分": "active ingredient",
"活性成分": "bioactive compound",
"提取物": "extract",
"总黄酮": "total flavonoids",
"总皂苷": "total saponins",
"总生物碱": "total alkaloids",
"多糖": "polysaccharide",
"挥发油": "essential oil",
"萜类": "terpenoid",
"黄酮": "flavonoid",
"皂苷": "saponin",
"生物碱": "alkaloid",
"中药药理": "Chinese medicine pharmacology",
"药性": "drug property",
"四气五味": "four properties and five tastes",
"归经": "meridian tropism",
"升降浮沉": "ascending descending floating sinking",
"配伍": "compatibility",
"君臣佐使": "monarch minister assistant guide",
"十八反": "eighteen incompatibilities",
"十九畏": "nineteen mutual fears",
"炮制": "processing",
"中药炮制": "Chinese medicine processing",
"辨证论治": "syndrome differentiation and treatment",
"证候": "syndrome",
"治法": "treatment method",
"清热解毒": "clearing heat and detoxifying",
"活血化瘀": "activating blood and resolving stasis",
"补气": "supplementing qi",
"补血": "nourishing blood",
"滋阴": "nourishing yin",
"温阳": "warming yang",
"健脾": "strengthening spleen",
"疏肝": "soothing liver",
"益肾": "benefiting kidney",
"祛风": "dispersing wind",
"除湿": "eliminating dampness",
"化痰": "resolving phlegm",
"六经辨证": "six meridian syndrome differentiation",
"卫气营血": "wei qi ying blood",
"三焦辨证": "triple burner syndrome differentiation",
"藏象": "organ manifestation",
"经络": "meridian",
"穴位": "acupoint",
"经穴": "meridian point",
"中药现代化": "Chinese medicine modernization",
"网络药理学": "network pharmacology",
"中药代谢组学": "Chinese medicine metabolomics",
"中药质量控制": "Chinese medicine quality control",
"中药指纹图谱": "Chinese medicine fingerprint",
"中药血清药物化学": "Chinese medicine serum pharmacochemistry",
# 临床医学
"诊断": "diagnosis",
"预后": "prognosis",
"临床试验": "clinical trial",
"随机对照试验": "randomized controlled trial",
"队列研究": "cohort study",
"病例对照研究": "case-control study",
"横断面研究": "cross-sectional study",
"荟萃分析": "meta-analysis",
"系统评价": "systematic review",
"循证医学": "evidence-based medicine",
"个体化医疗": "precision medicine",
"基因检测": "genetic testing",
"核磁共振成像": "magnetic resonance imaging",
"计算机断层扫描": "computed tomography",
"超声": "ultrasound",
"病理": "pathology",
"活检": "biopsy",
"手术": "surgery",
"康复": "rehabilitation",
# 生物信息学
"基因组学": "genomics",
"转录组学": "transcriptomics",
"单细胞测序": "single-cell sequencing",
"高通量测序": "high-throughput sequencing",
"下一代测序": "next-generation sequencing",
"RNA测序": "RNA sequencing",
"基因本体": "gene ontology",
"通路分析": "pathway analysis",
"分子对接": "molecular docking",
"结构预测": "structure prediction",
"同源建模": "homology modeling",
"序列比对": "sequence alignment",
"系统发育": "phylogenetics",
"进化树": "phylogenetic tree",
# ========== 物理学与天文学 ==========
"超导": "superconductivity",
"量子": "quantum",
"光学": "optics",
"激光": "laser",
"光谱": "spectroscopy",
"磁性": "magnetism",
"半导体": "semiconductor",
"拓扑": "topological",
# 凝聚态物理
"拓扑绝缘体": "topological insulator",
"量子霍尔效应": "quantum Hall effect",
"自旋电子学": "spintronics",
"超流体": "superfluid",
"玻色-爱因斯坦凝聚": "Bose-Einstein condensate",
"磁共振": "magnetic resonance",
"铁电体": "ferroelectric",
"反铁磁": "antiferromagnetic",
"莫特绝缘体": "Mott insulator",
"外尔半金属": "Weyl semimetal",
"凝聚态": "condensed matter",
# 光学
"非线性光学": "nonlinear optics",
"超快光学": "ultrafast optics",
"光子学": "photonics",
"等离激元": "plasmonics",
"光子晶体": "photonic crystal",
"超构材料": "metamaterial",
"受激拉曼散射": "stimulated Raman scattering",
# [新增] 光镊和光学操纵
"光镊": "optical tweezers",
"光阱": "optical trap",
"光捕获": "optical trapping",
"光学操纵": "optical manipulation",
"光扭矩": "optical torque",
"光力": "optical force",
"梯度力": "gradient force",
"散射力": "scattering force",
# [新增] 激光相关
"飞秒激光": "femtosecond laser",
"皮秒激光": "picosecond laser",
"纳秒激光": "nanosecond laser",
"连续激光": "continuous wave laser",
"脉冲激光": "pulsed laser",
"超快激光": "ultrafast laser",
# [新增] 等离激元和表面增强
"表面等离激元": "surface plasmon",
"等离激元共振": "plasmon resonance",
"表面增强拉曼散射": "surface-enhanced Raman scattering",
"局域表面等离激元": "localized surface plasmon",
# [新增] 近场光学和太赫兹
"近场光学": "near-field optics",
"远场光学": "far-field optics",
"太赫兹": "terahertz",
"太赫兹辐射": "terahertz radiation",
"二次谐波": "second harmonic generation",
"光学参量振荡": "optical parametric oscillation",
# 粒子物理
"夸克": "quark",
"轻子": "lepton",
"玻色子": "boson",
"费米子": "fermion",
"标准模型": "standard model",
"希格斯玻色子": "Higgs boson",
"中微子": "neutrino",
"正电子": "positron",
"反物质": "antimatter",
# 核物理
"核裂变": "nuclear fission",
"核聚变": "nuclear fusion",
"放射性衰变": "radioactive decay",
"α衰变": "alpha decay",
"β衰变": "beta decay",
"γ射线": "gamma ray",
# 天体物理
"黑洞": "black hole",
"中子星": "neutron star",
"白矮星": "white dwarf",
"脉冲星": "pulsar",
"类星体": "quasar",
"星系": "galaxy",
"暗物质": "dark matter",
"暗能量": "dark energy",
"引力波": "gravitational wave",
"宇宙微波背景辐射": "cosmic microwave background",
"恒星演化": "stellar evolution",
"超新星": "supernova",
"吸积盘": "accretion disk",
"红移": "redshift",
"视界": "event horizon",
"霍金辐射": "Hawking radiation",
# 量子物理
"量子纠缠": "quantum entanglement",
"量子计算": "quantum computing",
"量子通信": "quantum communication",
"量子比特": "qubit",
"量子退相干": "quantum decoherence",
"贝尔不等式": "Bell inequality",
"量子隐形传态": "quantum teleportation",
"薛定谔方程": "Schrödinger equation",
"波函数": "wave function",
"海森堡不确定性原理": "Heisenberg uncertainty principle",
"路径积分": "path integral",
"量子场论": "quantum field theory",
# 等离子体物理
"等离子体": "plasma",
"托卡马克": "tokamak",
"惯性约束聚变": "inertial confinement fusion",
"德拜长度": "Debye length",
# 声学
"声子": "phonon",
"声学超材料": "acoustic metamaterial",
"声发射": "acoustic emission",
"声悬浮": "acoustic levitation",
# 热力学
"熵": "entropy",
"焓": "enthalpy",
"临界点": "critical point",
"玻尔兹曼分布": "Boltzmann distribution",
"伊辛模型": "Ising model",
"自由能": "free energy",
"比热容": "specific heat capacity",
"热导率": "thermal conductivity",
"热辐射": "thermal radiation",
"黑体辐射": "blackbody radiation",
# 流体力学
"湍流": "turbulence",
"纳维-斯托克斯方程": "Navier-Stokes equation",
"边界层": "boundary layer",
"涡旋": "vortex",
# ========== 工程技术 ==========
"人工智能": "artificial intelligence",
"机器学习": "machine learning",
"深度学习": "deep learning",
"神经网络": "neural network",
"自然语言处理": "natural language processing",
"计算机视觉": "computer vision",
# 机械工程
"有限元分析": "finite element analysis",
"流体力学": "fluid mechanics",
"热传导": "heat transfer",
"材料力学": "mechanics of materials",
"焊接": "welding",
"切削加工": "machining",
"增材制造": "additive manufacturing",
"数控加工": "CNC machining",
"铸造": "casting",
# 电气工程
"电机": "electric motor",
"电力系统": "power system",
"电磁场": "electromagnetic field",
"变压器": "transformer",
"电力电子": "power electronics",
"变频器": "inverter",
"绝缘": "insulation",
"谐波": "harmonics",
# 电子工程
"集成电路": "integrated circuit",
"场效应晶体管": "field-effect transistor",
"MOSFET": "MOSFET",
"印制电路板": "printed circuit board",
"可编程逻辑器件": "programmable logic device",
"射频": "radio frequency",
"天线": "antenna",
"信号处理": "signal processing",
# 计算机科学
"算法": "algorithm",
"数据结构": "data structure",
"操作系统": "operating system",
"分布式系统": "distributed system",
"软件工程": "software engineering",
# 人工智能
"卷积神经网络": "convolutional neural network",
"循环神经网络": "recurrent neural network",
"生成对抗网络": "generative adversarial network",
"强化学习": "reinforcement learning",
"迁移学习": "transfer learning",
"注意力机制": "attention mechanism",
"语义分割": "semantic segmentation",
"目标检测": "object detection",
"语义分析": "semantic analysis",
"大语言模型": "large language model",
"变换器": "transformer",
"预训练": "pre-training",
"微调": "fine-tuning",
"提示工程": "prompt engineering",
"检索增强生成": "retrieval-augmented generation",
# 机器人学
"运动学": "kinematics",
"控制器": "controller",
"传感器": "sensor",
"执行器": "actuator",
"路径规划": "path planning",
"同时定位与建图": "simultaneous localization and mapping",
# 土木工程
"岩土工程": "geotechnical engineering",
"混凝土": "concrete",
"结构工程": "structural engineering",
# 化学工程
"蒸馏": "distillation",
"传质": "mass transfer",
"反应工程": "reaction engineering",
"分离工程": "separation engineering",
# 航空航天
"空气动力学": "aerodynamics",
"推进系统": "propulsion system",
"飞行控制": "flight control",
"涡轮": "turbine",
"无人机": "unmanned aerial vehicle",
# 生物医学工程
"生物力学": "biomechanics",
"医学影像": "medical imaging",
"康复工程": "rehabilitation engineering",
"组织工程": "tissue engineering",
# 能源
"燃料电池": "fuel cell",
"风力发电": "wind power",
"生物质能": "bioenergy",
"储能": "energy storage",
"超级电容器": "supercapacitor",
"锂硫电池": "lithium-sulfur battery",
"钠离子电池": "sodium-ion battery",
"锌空气电池": "zinc-air battery",
# ========== 环境科学与地球科学 ==========
"环境": "environment",
"污染": "pollution",
"气候": "climate",
"碳排放": "carbon emission",
"可持续": "sustainable",
"可再生能源": "renewable energy",
"氢能": "hydrogen energy",
# 大气污染
"大气污染": "air pollution",
"颗粒物": "particulate matter",
"PM2.5": "PM2.5",
"臭氧": "ozone",
"二氧化硫": "sulfur dioxide",
"氮氧化物": "nitrogen oxides",
"挥发性有机物": "volatile organic compounds",
"酸雨": "acid rain",
"光化学烟雾": "photochemical smog",
# 水污染
"水污染": "water pollution",
"废水处理": "wastewater treatment",
"富营养化": "eutrophication",
"化学需氧量": "chemical oxygen demand",
"生化需氧量": "biochemical oxygen demand",
"重金属": "heavy metals",
"地下水": "groundwater",
"地表水": "surface water",
"膜分离": "membrane separation",
# 土壤污染
"土壤污染": "soil pollution",
"土壤修复": "soil remediation",
"有机污染物": "organic pollutants",
"农药残留": "pesticide residue",
"生物修复": "bioremediation",
"植物修复": "phytoremediation",
# 固废处理
"固体废物": "solid waste",
"垃圾填埋": "landfill",
"焚烧": "incineration",
"回收利用": "recycling",
"危险废物": "hazardous waste",
"电子废弃物": "e-waste",
"塑料污染": "plastic pollution",
"微塑料": "microplastics",
# 气候变化
"温室效应": "greenhouse effect",
"温室气体": "greenhouse gas",
"全球变暖": "global warming",
"碳循环": "carbon cycle",
"碳足迹": "carbon footprint",
"碳中和": "carbon neutrality",
"碳达峰": "carbon peak",
"净零排放": "net zero emissions",
"极端天气": "extreme weather",
"气候变化": "climate change",
"全球气候模型": "global climate model",
"海平面上升": "sea level rise",
"冰川消融": "glacier retreat",
"冻土融化": "permafrost thawing",
"厄尔尼诺": "El Nino",
"干旱": "drought",
"洪涝": "flooding",
# 生态学
"生态系统": "ecosystem",
"生物多样性": "biodiversity",
"种群": "population",
"群落": "community",
"食物链": "food chain",
"食物网": "food web",
"生态修复": "ecological restoration",
"物种灭绝": "species extinction",
"入侵物种": "invasive species",
"生物富集": "bioaccumulation",
"保护生物学": "conservation biology",
# 地质学
"岩石": "rock",
"矿物": "mineral",
"地震": "earthquake",
"火山": "volcano",
"板块构造": "plate tectonics",
"沉积物": "sediment",
"岩浆": "magma",
"地壳": "crust",
"地幔": "mantle",
"断层": "fault",
"褶皱": "fold",
"侵蚀": "erosion",
"风化": "weathering",
"变质作用": "metamorphism",
"古生物学": "paleontology",
"地层学": "stratigraphy",
# 海洋学
"海洋": "ocean",
"洋流": "ocean current",
"海洋酸化": "ocean acidification",
"深海": "deep sea",
"珊瑚礁": "coral reef",
"潮汐": "tide",
"海啸": "tsunami",
"海水淡化": "desalination",
# 水文学
"径流": "runoff",
"水循环": "water cycle",
"流域": "watershed",
"水文模型": "hydrological model",
"蒸散发": "evapotranspiration",
"降水": "precipitation",
"地下水位": "water table",
"含水层": "aquifer",
"水土流失": "soil erosion",
# 大气科学
"气象": "meteorology",
"大气化学": "atmospheric chemistry",
"大气层": "atmosphere",
"对流层": "troposphere",
"平流层": "stratosphere",
"气溶胶": "aerosol",
"太阳辐射": "solar radiation",
"大气环流": "atmospheric circulation",
"季风": "monsoon",
# 遥感
"遥感": "remote sensing",
"卫星遥感": "satellite remote sensing",
"激光雷达": "LiDAR",
"合成孔径雷达": "synthetic aperture radar",
"植被指数": "vegetation index",
"多光谱": "multispectral",
"高光谱": "hyperspectral",
"空间分辨率": "spatial resolution",
"反演": "inversion",
# 地理信息系统
"地理信息系统": "geographic information system",
"空间分析": "spatial analysis",
"地理数据": "geospatial data",
"空间插值": "spatial interpolation",
"数字高程模型": "digital elevation model",
"空间自相关": "spatial autocorrelation",
"克里金插值": "kriging",
# 可持续发展
"碳交易": "carbon trading",
"碳市场": "carbon market",
"清洁能源": "clean energy",
"循环经济": "circular economy",
"绿色建筑": "green building",
"可持续发展": "sustainable development",
"生命周期评估": "life cycle assessment",
"环境影响评价": "environmental impact assessment",
# 其他环境
"荒漠化": "desertification",
"水土保持": "soil and water conservation",
"地质灾害": "geological hazard",
"滑坡": "landslide",
"泥石流": "debris flow",
"地面沉降": "land subsidence",
"城市热岛": "urban heat island",
"城市化": "urbanization",
"土地利用": "land use",