260529更新
This commit is contained in:
parent
a187d064dc
commit
11cbe59cce
|
|
@ -0,0 +1,152 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
智能体模块
|
||||
"""
|
||||
|
||||
# 列举导入模块
|
||||
from pathlib import Path
|
||||
|
||||
from typing import List, Optional, Union, cast
|
||||
|
||||
from starlette.applications import Starlette
|
||||
from pydantic_ai import Agent as BaseAgent, AgentRunResult
|
||||
from pydantic_ai.models import Model
|
||||
from pydantic_ai.models.openai import OpenAIChatModel
|
||||
from pydantic_ai.capabilities import AgentCapability
|
||||
from pydantic_ai.output import OutputSpec
|
||||
from pydantic_ai.providers.openai import OpenAIProvider
|
||||
from pydantic_ai.ui._web.api import ConfigureFrontend, ModelInfo, BuiltinToolInfo
|
||||
from pydantic_ai_skills import SkillsCapability
|
||||
|
||||
from starlette.routing import Route
|
||||
from starlette.requests import Request
|
||||
from starlette.responses import Response
|
||||
|
||||
|
||||
|
||||
|
||||
class Agent:
|
||||
"""
|
||||
智能体,支持:
|
||||
1)实例智能体
|
||||
2)异步运行
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
instructions: str,
|
||||
output_type: OutputSpec = str,
|
||||
capabilities: Optional[List[AgentCapability]] = None,
|
||||
):
|
||||
"""
|
||||
初始化智能体
|
||||
:param instructions: 指令
|
||||
:param skills: 智能体技能列表,默认为不使用技能
|
||||
:param output_type: 输出类型
|
||||
:return: 智能体实例
|
||||
"""
|
||||
# 引入相应模块
|
||||
from uuid import uuid4
|
||||
from .memory import Memory
|
||||
|
||||
# 创建智能体
|
||||
self.agent = self._create_agent(
|
||||
instructions=instructions,
|
||||
capabilities=capabilities,
|
||||
output_type=output_type,
|
||||
)
|
||||
|
||||
# 生成会话唯一标识
|
||||
self.session_id = uuid4().hex.lower()
|
||||
|
||||
# 实例记忆体
|
||||
self.memory = Memory()
|
||||
|
||||
def _create_agent(
|
||||
self,
|
||||
instructions: str,
|
||||
capabilities: Optional[List[AgentCapability]],
|
||||
output_type: OutputSpec,
|
||||
) -> BaseAgent:
|
||||
"""
|
||||
创建智能体
|
||||
:param instructions: 指令
|
||||
:param capabilities: 智能体能力列表
|
||||
:param output_type: 输出类型
|
||||
:return: 智能体实例
|
||||
"""
|
||||
agent = BaseAgent(
|
||||
model=OpenAIChatModel(
|
||||
model_name="deepseek-v4-flash",
|
||||
provider=OpenAIProvider(
|
||||
base_url="https://tokenhub.tencentmaas.com/v1",
|
||||
api_key="sk-D9Y1mCe8VlvNqLuSC4mAjqEwxJ2nW4C0h8a7EPn8kg9RLsHq",
|
||||
),
|
||||
),
|
||||
instructions=instructions,
|
||||
capabilities=capabilities,
|
||||
output_type=output_type,
|
||||
retries=1,
|
||||
)
|
||||
return agent
|
||||
|
||||
async def run(self, user_prompt: str | List[str]) -> AgentRunResult:
|
||||
"""
|
||||
异步运行
|
||||
:param user_prompt: 用户提示词
|
||||
:return: 智能体回复
|
||||
"""
|
||||
# 查询会话历史消息
|
||||
message_history = self.memory.read(session_id=self.session_id)
|
||||
result = await self.agent.run(
|
||||
user_prompt=user_prompt, message_history=message_history
|
||||
)
|
||||
# 记录会话历史消息
|
||||
self.memory.create(
|
||||
session_id=self.session_id,
|
||||
dialogue_message=result.new_messages(),
|
||||
)
|
||||
return result
|
||||
|
||||
def start_starlette_app(self) -> None:
|
||||
"""
|
||||
启动 Starlette 应用,为智能体提供网页交互式对话界面
|
||||
:return: None
|
||||
"""
|
||||
self.agent.to_web()
|
||||
|
||||
model = cast(Model, self.agent.model)
|
||||
|
||||
model_infos = [ModelInfo(id=model.model_id, name=model.label, builtin_tools=[])]
|
||||
|
||||
async def options_chat(request: Request) -> Response:
|
||||
"""处理 OPTIONS 请求"""
|
||||
return Response()
|
||||
|
||||
async def configure_frontend(request: Request) -> Response:
|
||||
"""向前端提供模型和技能"""
|
||||
config = ConfigureFrontend(
|
||||
models=[
|
||||
ModelInfo(
|
||||
id=model.model_id,
|
||||
name=model.label,
|
||||
builtin_tools=model.profile.supported_builtin_tools,
|
||||
)
|
||||
],
|
||||
builtin_tools=[],
|
||||
)
|
||||
return JSONResponse(config.model_dump(by_alias=True))
|
||||
|
||||
Starlette(
|
||||
routes=[
|
||||
Route("/chat", options_chat, methods=["OPTIONS"]),
|
||||
Route("/chat", post_chat, methods=["POST"]),
|
||||
Route("/configure", configure_frontend, methods=["GET"]),
|
||||
Route("/health", health, methods=["GET"]),
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
a = Agent(instructions="你是一个专业的翻译")
|
||||
|
||||
print(a)
|
||||
BIN
utils/caches.db
BIN
utils/caches.db
Binary file not shown.
|
|
@ -13,8 +13,8 @@ from uuid import uuid4
|
|||
from pydantic_ai import ModelMessage
|
||||
from pydantic_ai.messages import ModelMessagesTypeAdapter
|
||||
|
||||
sys.path.append(Path(__file__).parent.parent.parent.as_posix())
|
||||
from utils.sqlite import SQLite
|
||||
sys.path.append(Path(__file__).resolve().parent.as_posix())
|
||||
from sqlite import SQLite
|
||||
|
||||
|
||||
class Memory(SQLite):
|
||||
Binary file not shown.
|
|
@ -3,8 +3,10 @@
|
|||
请求客户端模块
|
||||
"""
|
||||
|
||||
import hashlib
|
||||
import json
|
||||
from pathlib import Path
|
||||
import sys
|
||||
import time
|
||||
from typing import Any, Dict, Generator, Literal, Optional, Tuple, Union
|
||||
from xml.etree import ElementTree
|
||||
|
|
@ -14,9 +16,8 @@ from requests import Response, Session
|
|||
from requests.adapters import HTTPAdapter
|
||||
from urllib3.util.retry import Retry
|
||||
|
||||
import sys
|
||||
|
||||
sys.path.append(Path(__file__).parent.as_posix())
|
||||
|
||||
from restrict import restrict
|
||||
from sqlite import SQLite
|
||||
|
||||
|
|
@ -329,10 +330,20 @@ class Request:
|
|||
if kwargs.get("json"):
|
||||
kwargs["json"] = {k: v for k, v in kwargs["json"].items() if v}
|
||||
|
||||
kwargs = dict(sorted(kwargs.items()))
|
||||
|
||||
# 缓存唯一标识
|
||||
guid = kwargs.pop("guid", None)
|
||||
# 若缓存非空且缓存唯一标识非空则查询并获取单条缓存
|
||||
if self.caches and guid:
|
||||
if self.caches:
|
||||
# 若缓存唯一标识为空则默认使用 MD5 算法生成缓存唯一标识
|
||||
if not guid:
|
||||
guid = (
|
||||
hashlib.md5(
|
||||
json.dumps(obj=kwargs, ensure_ascii=False).encode("utf-8")
|
||||
)
|
||||
.hexdigest()
|
||||
.upper()
|
||||
)
|
||||
cache = self.caches.query(guid)
|
||||
if cache:
|
||||
return cache
|
||||
|
|
|
|||
|
|
@ -1,111 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
智能体模块
|
||||
"""
|
||||
|
||||
# 列举导入模块
|
||||
from pathlib import Path
|
||||
import sys
|
||||
from typing import List, Optional
|
||||
from uuid import uuid4
|
||||
from starlette.applications import Starlette
|
||||
from pydantic_ai import Agent, AgentRunResult
|
||||
from pydantic_ai.models.openai import OpenAIChatModel
|
||||
from pydantic_ai.output import OutputSpec
|
||||
from pydantic_ai.providers.openai import OpenAIProvider
|
||||
from pydantic_ai_skills import SkillsToolset
|
||||
|
||||
sys.path.append(Path(__file__).parent.as_posix())
|
||||
|
||||
from memory import Memory
|
||||
|
||||
|
||||
class BaseAgent:
|
||||
"""
|
||||
通用智能体基类,支持:
|
||||
1)实例智能体
|
||||
2)异步运行
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
instructions: str,
|
||||
output_type: OutputSpec = str,
|
||||
skill_name: Optional[str] = None,
|
||||
):
|
||||
"""
|
||||
初始化智能体
|
||||
:param instructions: 指令
|
||||
:param output_type: 输出类型
|
||||
:param skill_name: 技能名称,默认不使用技能
|
||||
:return: 智能体实例
|
||||
"""
|
||||
# 生成会话唯一标识
|
||||
self.session_id = uuid4().hex.lower()
|
||||
# 实例智能体
|
||||
self.agent = self._instantiate_agent(
|
||||
skill_name=skill_name,
|
||||
instructions=instructions,
|
||||
output_type=output_type,
|
||||
)
|
||||
# 实例记忆体
|
||||
self.memory = Memory()
|
||||
|
||||
def _instantiate_agent(
|
||||
self, skill_name: Optional[str], instructions: str, output_type: OutputSpec
|
||||
) -> Agent:
|
||||
"""
|
||||
实例智能体
|
||||
:param skill_name: 技能名称
|
||||
:param instructions: 指令
|
||||
:param output_type: 输出类型
|
||||
:return: 智能体实例
|
||||
"""
|
||||
# 若技能名称为空则技能集合为 None,若技能名称非空则构建技能路径
|
||||
if not skill_name:
|
||||
toolsets = None
|
||||
else:
|
||||
toolsets = [
|
||||
SkillsToolset(
|
||||
directories=[Path(__file__).parent.parent / "skills" / skill_name]
|
||||
)
|
||||
]
|
||||
|
||||
agent = Agent(
|
||||
toolsets=toolsets,
|
||||
model=OpenAIChatModel(
|
||||
model_name="deepseek-v4-flash",
|
||||
provider=OpenAIProvider(
|
||||
base_url="https://tokenhub.tencentmaas.com/v1",
|
||||
api_key="sk-D9Y1mCe8VlvNqLuSC4mAjqEwxJ2nW4C0h8a7EPn8kg9RLsHq",
|
||||
),
|
||||
),
|
||||
instructions=instructions,
|
||||
output_type=output_type,
|
||||
)
|
||||
return agent
|
||||
|
||||
async def run(self, user_prompt: str | List[str]) -> AgentRunResult:
|
||||
"""
|
||||
异步运行
|
||||
:param user_prompt: 用户提示词
|
||||
:return: 智能体回复
|
||||
"""
|
||||
# 查询会话历史消息
|
||||
message_history = self.memory.read(session_id=self.session_id)
|
||||
result = await self.agent.run(
|
||||
user_prompt=user_prompt, message_history=message_history
|
||||
)
|
||||
# 记录会话历史消息
|
||||
self.memory.create(
|
||||
session_id=self.session_id,
|
||||
dialogue_message=result.new_messages(),
|
||||
)
|
||||
return result
|
||||
|
||||
def start_web_service(self) -> Starlette:
|
||||
"""
|
||||
实例 Web 服务
|
||||
:return: Starlette 实例
|
||||
"""
|
||||
return self.agent.to_web()
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
"""
|
||||
主运行模块
|
||||
"""
|
||||
# 列举导入模块
|
||||
import uvicorn
|
||||
|
||||
import sys
|
||||
from pathlib import Path
|
||||
|
||||
sys.path.append(Path(__file__).parent.parent.as_posix())
|
||||
from utils.agent import BaseAgent
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# 实例智能体
|
||||
agent = BaseAgent(
|
||||
instructions=(
|
||||
"你是耐烧蚀高分子领域 Wiki 助手。\n\n"
|
||||
"### 【工具规范】\n"
|
||||
"仅可采信通过使用 `wiki_helper` 技能的 `search_materials` 脚本检索的资料作答。\n\n"
|
||||
"### 【工作流】\n"
|
||||
"1. **分析**:识别问题中的核心技术术语和实体,将其转化为简练的检索语句。\n"
|
||||
" - 例:'Cantor合金的成分是什么' -> 'Cantor合金成分'\n"
|
||||
"2. **行动**:必须调用工具检索,严禁跳过。\n"
|
||||
"3. **作答**:\n"
|
||||
" - **有结果**:仅基于参考资料回答,正文标注引用 [1],文末列出资料标题。\n"
|
||||
" - **无结果**:如实回复“未在知识库中找到相关文档”,严禁利用通用知识编造。\n\n"
|
||||
"### 【原则】\n"
|
||||
"严禁幻觉,保持专业严谨。"
|
||||
),
|
||||
skill_names=["wiki-helper"],
|
||||
)
|
||||
uvicorn.run(app=agent.start_web_service(), host="127.0.0.1", port=7932)
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
---
|
||||
name: wiki-helper
|
||||
description: 使用 Python 在 wiki 中进行检索
|
||||
---
|
||||
|
||||
# Wiki 知识助手
|
||||
|
||||
使用 `search_materials` 脚本根据检索语句在知识库中进行检索。
|
||||
|
||||
## Usage
|
||||
|
||||
请使用以下工具进行搜索:
|
||||
|
||||
```python
|
||||
run_skill_script(
|
||||
skill_name="wiki-helper",
|
||||
script_name="search_materials",
|
||||
args={'question': '这里填入检索语句'}
|
||||
)
|
||||
```
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
# 列举导入模块
|
||||
import argparse
|
||||
from pathlib import Path
|
||||
import sys
|
||||
|
||||
sys.path.append(Path(__file__).resolve().parent.parent.parent.parent.parent.as_posix())
|
||||
|
||||
from utils.request import Request
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--question", required=True, type=str, help="检索语句")
|
||||
args = parser.parse_args()
|
||||
|
||||
# 实例请求客户端
|
||||
request = Request(cache_enabled=True)
|
||||
response = request.post(
|
||||
url="http://127.0.0.1:19828/api/v1/projects/current/search", # LLM wiki 提供的搜索接口
|
||||
headers={
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
json={
|
||||
"query": args.question,
|
||||
"topK": 10,
|
||||
"includeContent": True, # 包含文档内容
|
||||
}, # 若客户端启用语义搜索则接口默认开启混合搜索
|
||||
)
|
||||
if not response.get("ok") or not response.get("results"):
|
||||
print("未搜索到相关资料。")
|
||||
|
||||
materials = [] # 资料
|
||||
for i, result in enumerate(response["results"], 1):
|
||||
# 资料标题
|
||||
title = result.get("title", f"资料{i}")
|
||||
# 若资料内容为空则跳过
|
||||
if not (content := result.get("content", "").strip()):
|
||||
continue
|
||||
materials.append(f"[{i}] {title}\n{content}")
|
||||
try:
|
||||
print("\n\n---\n\n".join(materials))
|
||||
except UnicodeEncodeError:
|
||||
sys.stdout.buffer.write(
|
||||
("\n\n---\n\n".join(materials) + "\n").encode("utf-8", errors="replace")
|
||||
)
|
||||
|
|
@ -0,0 +1 @@
|
|||
[]
|
||||
|
|
@ -0,0 +1 @@
|
|||
[]
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"version": 1,
|
||||
"tasks": []
|
||||
}
|
||||
|
|
@ -0,0 +1,586 @@
|
|||
{
|
||||
"version": 1,
|
||||
"updatedAt": 1779630898321,
|
||||
"files": {
|
||||
"purpose.md": {
|
||||
"hash": "bc8af6725f851c075fae86028a9cb744",
|
||||
"size": 816,
|
||||
"mtimeMs": 1779595218761
|
||||
},
|
||||
"raw/sources/HfNbTaTiZr难熔高熵合金中的旋转形变孪晶.pdf": {
|
||||
"hash": "29ac0f691b68d65aadc4e82ec50aae5f",
|
||||
"size": 18308160,
|
||||
"mtimeMs": 1779087358000
|
||||
},
|
||||
"raw/sources/激光熔覆制备高熵合金涂层及微观结构.pdf": {
|
||||
"hash": "68f3d870b6d15f25a1a27b27bc649212",
|
||||
"size": 3121903,
|
||||
"mtimeMs": 1779072696000
|
||||
},
|
||||
"raw/sources/纳米析出强化高熵合金的研究进展.pdf": {
|
||||
"hash": "6e6be01e9b76206eaede96d7b9301326",
|
||||
"size": 9587920,
|
||||
"mtimeMs": 1779073400000
|
||||
},
|
||||
"raw/sources/随着晶粒细化 CoCrFeMnNi 高熵合金中孪晶行为的转变.pdf": {
|
||||
"hash": "7772dcdc195d937df3832bde03aa7c7b",
|
||||
"size": 1763474,
|
||||
"mtimeMs": 1779073666000
|
||||
},
|
||||
"raw/sources/面向极端服役条件的高熵合金结构材料:性能优势、瓶颈与突破路径_吕昭平.pdf": {
|
||||
"hash": "a3e1fe2570b5e4a9335014ac2be52c02",
|
||||
"size": 1263872,
|
||||
"mtimeMs": 1779088948000
|
||||
},
|
||||
"raw/sources/高低温条件下高熵合金性能与机理的最新进展.pdf": {
|
||||
"hash": "556689163ab93a5c0850d60574b8d9f9",
|
||||
"size": 15682357,
|
||||
"mtimeMs": 1779087950000
|
||||
},
|
||||
"raw/sources/高熵合金与传统合金的摩擦磨损行为对比分析.pdf": {
|
||||
"hash": "55d603983e7c5da4342fe60e35bed8c1",
|
||||
"size": 1432599,
|
||||
"mtimeMs": 1779072874000
|
||||
},
|
||||
"raw/sources/高熵合金中非金属夹杂物控制的研究进展.pdf": {
|
||||
"hash": "6add452068516699073ca93ba999fc9b",
|
||||
"size": 2655720,
|
||||
"mtimeMs": 1779088644000
|
||||
},
|
||||
"raw/sources/高熵合金制备及应用研究进展_宫书林.pdf": {
|
||||
"hash": "520608078cf9d0264344b863d66762b2",
|
||||
"size": 1335809,
|
||||
"mtimeMs": 1779088884000
|
||||
},
|
||||
"raw/sources/高熵合金的低温塑性变形机制及强韧化研究进展.pdf": {
|
||||
"hash": "c4414698b1b10f17ab08b3cb25a7b52a",
|
||||
"size": 4412348,
|
||||
"mtimeMs": 1779088340000
|
||||
},
|
||||
"schema.md": {
|
||||
"hash": "ec14ae1b9b74f6e10d81af4d810386aa",
|
||||
"size": 3340,
|
||||
"mtimeMs": 1779595218755
|
||||
},
|
||||
"wiki/concepts/-2026-05-24.md": {
|
||||
"hash": "918e37f341525bf913aedf2df7edd82a",
|
||||
"size": 335,
|
||||
"mtimeMs": 1779606307068
|
||||
},
|
||||
"wiki/concepts/临界孪晶应力.md": {
|
||||
"hash": "34251260c541d482741d5167724ba6e7",
|
||||
"size": 2771,
|
||||
"mtimeMs": 1779606692694
|
||||
},
|
||||
"wiki/concepts/位错切过机制.md": {
|
||||
"hash": "1aa6e512c8a49f7058c66411c232463a",
|
||||
"size": 2241,
|
||||
"mtimeMs": 1779606374498
|
||||
},
|
||||
"wiki/concepts/低温强韧化.md": {
|
||||
"hash": "076a64714d429ff181cd69ce6300fc70",
|
||||
"size": 8479,
|
||||
"mtimeMs": 1779604499766
|
||||
},
|
||||
"wiki/concepts/体心立方结构.md": {
|
||||
"hash": "0f697cfd3585bb45d823aeb8fb14c522",
|
||||
"size": 4213,
|
||||
"mtimeMs": 1779604887542
|
||||
},
|
||||
"wiki/concepts/共格析出.md": {
|
||||
"hash": "a960971c08537056d99a9b98292a9169",
|
||||
"size": 2235,
|
||||
"mtimeMs": 1779606374477
|
||||
},
|
||||
"wiki/concepts/剪切孪晶.md": {
|
||||
"hash": "e6a0f60b3e6284abc00a840a38becdc2",
|
||||
"size": 3814,
|
||||
"mtimeMs": 1779604077319
|
||||
},
|
||||
"wiki/concepts/化学短程有序.md": {
|
||||
"hash": "39bb224901b3993ffc4fccb806db5cce",
|
||||
"size": 2384,
|
||||
"mtimeMs": 1779606074902
|
||||
},
|
||||
"wiki/concepts/变形孪晶.md": {
|
||||
"hash": "9ce5c7269765079bf63f9507c7212bfc",
|
||||
"size": 2486,
|
||||
"mtimeMs": 1779606692676
|
||||
},
|
||||
"wiki/concepts/同轴送粉.md": {
|
||||
"hash": "a8a72f937510ba299ed7b8c345adcf29",
|
||||
"size": 1897,
|
||||
"mtimeMs": 1779605739127
|
||||
},
|
||||
"wiki/concepts/固溶强化.md": {
|
||||
"hash": "2a15df2920462bd7e58f1aed03a5bbc1",
|
||||
"size": 3771,
|
||||
"mtimeMs": 1779604887530
|
||||
},
|
||||
"wiki/concepts/坩埚 - 熔体反应.md": {
|
||||
"hash": "b45796b83b98504eb97a0939f0dc91ef",
|
||||
"size": 1981,
|
||||
"mtimeMs": 1779605451590
|
||||
},
|
||||
"wiki/concepts/复合析出.md": {
|
||||
"hash": "3fd807b752d615438094c984bba2c6ab",
|
||||
"size": 2767,
|
||||
"mtimeMs": 1779606374491
|
||||
},
|
||||
"wiki/concepts/夹杂物热力学动力学.md": {
|
||||
"hash": "ec895538c1fec2db2ebae123679d0bbc",
|
||||
"size": 2278,
|
||||
"mtimeMs": 1779605451560
|
||||
},
|
||||
"wiki/concepts/孪晶要素.md": {
|
||||
"hash": "adef5450daefa95bab12df5c7c7ecbea",
|
||||
"size": 3942,
|
||||
"mtimeMs": 1779604077325
|
||||
},
|
||||
"wiki/concepts/层错能.md": {
|
||||
"hash": "4ddbe3c5d7970d1a74df5f7006dd3a5e",
|
||||
"size": 2402,
|
||||
"mtimeMs": 1779606692686
|
||||
},
|
||||
"wiki/concepts/扭折带.md": {
|
||||
"hash": "512d5101c5181d9f394dcf59132e7a24",
|
||||
"size": 2762,
|
||||
"mtimeMs": 1779606074912
|
||||
},
|
||||
"wiki/concepts/摩擦化学反应层.md": {
|
||||
"hash": "048f07c35ee66495f1f0af7c6cf864b6",
|
||||
"size": 4673,
|
||||
"mtimeMs": 1779604887535
|
||||
},
|
||||
"wiki/concepts/旋转形变孪晶.md": {
|
||||
"hash": "0a58cae48283eb40beea955aee6150bf",
|
||||
"size": 3897,
|
||||
"mtimeMs": 1779604077314
|
||||
},
|
||||
"wiki/concepts/晶界工程.md": {
|
||||
"hash": "5a720d890f8274605add45d4dcc3a4ee",
|
||||
"size": 2424,
|
||||
"mtimeMs": 1779606074907
|
||||
},
|
||||
"wiki/concepts/极端服役条件.md": {
|
||||
"hash": "aa47b2c953d5896c91b7c237a0db2c13",
|
||||
"size": 2723,
|
||||
"mtimeMs": 1779606074895
|
||||
},
|
||||
"wiki/concepts/柱状晶.md": {
|
||||
"hash": "8a31b57aa90e08dec434bd6bcbc4fefa",
|
||||
"size": 1777,
|
||||
"mtimeMs": 1779605739113
|
||||
},
|
||||
"wiki/concepts/激光熔覆高熵合金涂层.md": {
|
||||
"hash": "851eabf56a8f89fcd554b67990dd7150",
|
||||
"size": 3093,
|
||||
"mtimeMs": 1779605739134
|
||||
},
|
||||
"wiki/concepts/点蚀机理.md": {
|
||||
"hash": "e219c16a443cfb5c2b7b43b61b251381",
|
||||
"size": 1829,
|
||||
"mtimeMs": 1779605451579
|
||||
},
|
||||
"wiki/concepts/热影响区.md": {
|
||||
"hash": "ac480ab3962da2ca1f36cee6a513a00b",
|
||||
"size": 1951,
|
||||
"mtimeMs": 1779605739121
|
||||
},
|
||||
"wiki/concepts/热等离子球化.md": {
|
||||
"hash": "c86f93dbb7c48a37b5f65ae566fd536d",
|
||||
"size": 2160,
|
||||
"mtimeMs": 1779605204001
|
||||
},
|
||||
"wiki/concepts/稀土改性.md": {
|
||||
"hash": "f0d5c0623a1666490f56602693d4f770",
|
||||
"size": 1815,
|
||||
"mtimeMs": 1779605451570
|
||||
},
|
||||
"wiki/concepts/等离子旋转电极雾化.md": {
|
||||
"hash": "a5b6a4fc32e76b4478c260cb49f0af6a",
|
||||
"size": 1595,
|
||||
"mtimeMs": 1779605203988
|
||||
},
|
||||
"wiki/concepts/纳米孪晶.md": {
|
||||
"hash": "69eaa0d11affc695d0f8700eea42348c",
|
||||
"size": 3827,
|
||||
"mtimeMs": 1779603789149
|
||||
},
|
||||
"wiki/concepts/纳米析出强化.md": {
|
||||
"hash": "31a3bb3ae122395c19230a123dbc1f44",
|
||||
"size": 2394,
|
||||
"mtimeMs": 1779606374472
|
||||
},
|
||||
"wiki/concepts/缺陷阱.md": {
|
||||
"hash": "e2a0bd8d261f77ba3c4083c0e9f73502",
|
||||
"size": 2882,
|
||||
"mtimeMs": 1779606074920
|
||||
},
|
||||
"wiki/concepts/腐蚀电位.md": {
|
||||
"hash": "c8d51cecdd7b519cf857b6e6286075f0",
|
||||
"size": 1654,
|
||||
"mtimeMs": 1779605739101
|
||||
},
|
||||
"wiki/concepts/超细晶.md": {
|
||||
"hash": "83940f03679dc608602c8bff87c60813",
|
||||
"size": 2726,
|
||||
"mtimeMs": 1779606692705
|
||||
},
|
||||
"wiki/concepts/选区激光熔化.md": {
|
||||
"hash": "240f036d5fd4f637f553e6eb2921dfbe",
|
||||
"size": 1965,
|
||||
"mtimeMs": 1779605203976
|
||||
},
|
||||
"wiki/concepts/钝化膜.md": {
|
||||
"hash": "1f4224a3de654623daa8c6297e9c7ed0",
|
||||
"size": 1602,
|
||||
"mtimeMs": 1779605739107
|
||||
},
|
||||
"wiki/concepts/非共格析出.md": {
|
||||
"hash": "1e43aa7896020f62ede1c2f983c5eeff",
|
||||
"size": 2355,
|
||||
"mtimeMs": 1779606374485
|
||||
},
|
||||
"wiki/concepts/非金属夹杂物.md": {
|
||||
"hash": "1488eec03592d1b6f986fdc2d227990a",
|
||||
"size": 1898,
|
||||
"mtimeMs": 1779605451544
|
||||
},
|
||||
"wiki/concepts/高熵合金制备工艺.md": {
|
||||
"hash": "e005641db590edc28a0b91918fd696a9",
|
||||
"size": 2751,
|
||||
"mtimeMs": 1779605203938
|
||||
},
|
||||
"wiki/concepts/高熵合金四大效应.md": {
|
||||
"hash": "15af7787a045032b73b0a56f43eb631f",
|
||||
"size": 2197,
|
||||
"mtimeMs": 1779605203927
|
||||
},
|
||||
"wiki/concepts/高熵合金应用领域.md": {
|
||||
"hash": "c0e9875a3c17fac335d00dd2e71492de",
|
||||
"size": 2887,
|
||||
"mtimeMs": 1779605203963
|
||||
},
|
||||
"wiki/concepts/高熵合金粉末技术.md": {
|
||||
"hash": "9e708910c997d7615c46d8111f215ecc",
|
||||
"size": 3188,
|
||||
"mtimeMs": 1779605203950
|
||||
},
|
||||
"wiki/concepts/高熵合金纯净度控制.md": {
|
||||
"hash": "f6c74e86f103eefba75cc2519f5b6aeb",
|
||||
"size": 2380,
|
||||
"mtimeMs": 1779605451552
|
||||
},
|
||||
"wiki/entities/45 钢.md": {
|
||||
"hash": "490cb50c4618edb24aedbfe839a88457",
|
||||
"size": 1497,
|
||||
"mtimeMs": 1779605739077
|
||||
},
|
||||
"wiki/entities/B2 相.md": {
|
||||
"hash": "bde031c9c6d922270c830677e3850c56",
|
||||
"size": 1664,
|
||||
"mtimeMs": 1779606374451
|
||||
},
|
||||
"wiki/entities/CrMnFeCoNi 高熵合金.md": {
|
||||
"hash": "40581105708e9e3e80855e591f957df1",
|
||||
"size": 1656,
|
||||
"mtimeMs": 1779605739072
|
||||
},
|
||||
"wiki/entities/HfNbTaTiZr 合金.md": {
|
||||
"hash": "d93650e3a628e40e8ace4328c2bf2d60",
|
||||
"size": 2582,
|
||||
"mtimeMs": 1779604077302
|
||||
},
|
||||
"wiki/entities/L12 相.md": {
|
||||
"hash": "55e3bde1af277d15db2dde25fb572807",
|
||||
"size": 1551,
|
||||
"mtimeMs": 1779606374442
|
||||
},
|
||||
"wiki/entities/Laves 相.md": {
|
||||
"hash": "b7bc2fea91c2b1757dda9b7729c40b42",
|
||||
"size": 1526,
|
||||
"mtimeMs": 1779606374456
|
||||
},
|
||||
"wiki/entities/MTS-E43-104.md": {
|
||||
"hash": "e9c7f0ec2a7cac9a6e48bd0a937b3a39",
|
||||
"size": 1220,
|
||||
"mtimeMs": 1779605739089
|
||||
},
|
||||
"wiki/entities/Oleg-N-Senkov.md": {
|
||||
"hash": "cdcea87198ae8504faa82cd6d10448d6",
|
||||
"size": 2372,
|
||||
"mtimeMs": 1779604077307
|
||||
},
|
||||
"wiki/entities/Scientific-Reports.md": {
|
||||
"hash": "0ba9639bf6d82513af00b46388e6de4b",
|
||||
"size": 1280,
|
||||
"mtimeMs": 1779605739093
|
||||
},
|
||||
"wiki/entities/Zeiss-Ultra-55-SEM.md": {
|
||||
"hash": "44b8329c65d0f4f7596394fb45d33d87",
|
||||
"size": 1115,
|
||||
"mtimeMs": 1779605739082
|
||||
},
|
||||
"wiki/entities/cantor-合金.md": {
|
||||
"hash": "d567f43ae5d845010ec31881b294f63f",
|
||||
"size": 3168,
|
||||
"mtimeMs": 1779604399686
|
||||
},
|
||||
"wiki/entities/cocrfemnni-合金.md": {
|
||||
"hash": "98ffdf54df8e060066bcd0a7cd8b4c21",
|
||||
"size": 3298,
|
||||
"mtimeMs": 1779603789119
|
||||
},
|
||||
"wiki/entities/cocrfemnni-高熵合金.md": {
|
||||
"hash": "39f1eb595e2aa38a5298d276474b7f8a",
|
||||
"size": 3799,
|
||||
"mtimeMs": 1779606692655
|
||||
},
|
||||
"wiki/entities/cocrfeni-合金.md": {
|
||||
"hash": "10b01aa317e28b8346b0bc217e23fead",
|
||||
"size": 2983,
|
||||
"mtimeMs": 1779604399732
|
||||
},
|
||||
"wiki/entities/cocrni-合金.md": {
|
||||
"hash": "6eb4fd8f1aeed2bf8675845c16ca2025",
|
||||
"size": 3660,
|
||||
"mtimeMs": 1779604399738
|
||||
},
|
||||
"wiki/entities/factsage.md": {
|
||||
"hash": "cef1ed7c968e992e892cab67ee49b8b8",
|
||||
"size": 1042,
|
||||
"mtimeMs": 1779605451536
|
||||
},
|
||||
"wiki/entities/fe40mn20cr20ni20-高熵合金.md": {
|
||||
"hash": "6e2eeba4e46f0586a0ce00dae85fef80",
|
||||
"size": 1169,
|
||||
"mtimeMs": 1779605451512
|
||||
},
|
||||
"wiki/entities/park-joo-hyun.md": {
|
||||
"hash": "f37e4238df7dc2b6cfc55dbd579c71c2",
|
||||
"size": 806,
|
||||
"mtimeMs": 1779605451478
|
||||
},
|
||||
"wiki/entities/tinbcrcoal-传统合金.md": {
|
||||
"hash": "53c95dbec05c10af0e5e94f38146b585",
|
||||
"size": 3365,
|
||||
"mtimeMs": 1779604887524
|
||||
},
|
||||
"wiki/entities/tivnbrcral-高熵合金.md": {
|
||||
"hash": "2291836819fe6e9aaaa82498506ce851",
|
||||
"size": 2983,
|
||||
"mtimeMs": 1779604887517
|
||||
},
|
||||
"wiki/entities/σ相.md": {
|
||||
"hash": "680dac2729895dec04e28e3618159295",
|
||||
"size": 1493,
|
||||
"mtimeMs": 1779606374463
|
||||
},
|
||||
"wiki/entities/中国材料进展.md": {
|
||||
"hash": "ed707bb44ebff6cba3a294996b9b5764",
|
||||
"size": 880,
|
||||
"mtimeMs": 1779606374437
|
||||
},
|
||||
"wiki/entities/中国科学院金属研究所.md": {
|
||||
"hash": "b5191835b402e15c92f61891cf59d4ce",
|
||||
"size": 1714,
|
||||
"mtimeMs": 1779606692668
|
||||
},
|
||||
"wiki/entities/倪冰雨.md": {
|
||||
"hash": "06cff595606a6a27fcaba50b1a31faaa",
|
||||
"size": 651,
|
||||
"mtimeMs": 1779606374423
|
||||
},
|
||||
"wiki/entities/北京科技大学.md": {
|
||||
"hash": "6dc00b84c15bc3143d6d39af81d12f6a",
|
||||
"size": 1701,
|
||||
"mtimeMs": 1779606074872
|
||||
},
|
||||
"wiki/entities/北方工业大学.md": {
|
||||
"hash": "078c990394f7f11f4d03fc34f84b04cc",
|
||||
"size": 980,
|
||||
"mtimeMs": 1779605451520
|
||||
},
|
||||
"wiki/entities/卢迪.md": {
|
||||
"hash": "d356d57856958f9c342f88b9bdfcee9a",
|
||||
"size": 994,
|
||||
"mtimeMs": 1779605739038
|
||||
},
|
||||
"wiki/entities/原子探针断层扫描.md": {
|
||||
"hash": "a9754ace159e8744a2b3717f332c09ef",
|
||||
"size": 2602,
|
||||
"mtimeMs": 1779603789125
|
||||
},
|
||||
"wiki/entities/吕昭平.md": {
|
||||
"hash": "de67daf315bdfc69309977e8325df45d",
|
||||
"size": 2538,
|
||||
"mtimeMs": 1779606074863
|
||||
},
|
||||
"wiki/entities/大连交通大学.md": {
|
||||
"hash": "894f05709378235d2c980f96c229dc03",
|
||||
"size": 1021,
|
||||
"mtimeMs": 1779605739059
|
||||
},
|
||||
"wiki/entities/宫书林.md": {
|
||||
"hash": "518cf838615eef44fdc9b2b77f10abb4",
|
||||
"size": 1024,
|
||||
"mtimeMs": 1779605203908
|
||||
},
|
||||
"wiki/entities/崔祥成.md": {
|
||||
"hash": "c7c5c48e5c39e6050262192d8ccf644d",
|
||||
"size": 1045,
|
||||
"mtimeMs": 1779605739045
|
||||
},
|
||||
"wiki/entities/工程科学学报.md": {
|
||||
"hash": "fd4d2a5d96a13ccdd63117cf4ab71c93",
|
||||
"size": 1048,
|
||||
"mtimeMs": 1779605451528
|
||||
},
|
||||
"wiki/entities/广州航海学院.md": {
|
||||
"hash": "d6c4c4cd9d5bf564b87461d19e792bca",
|
||||
"size": 1064,
|
||||
"mtimeMs": 1779605739066
|
||||
},
|
||||
"wiki/entities/张文金.md": {
|
||||
"hash": "fe542e0f6627e79ef206558e9b46ddac",
|
||||
"size": 1028,
|
||||
"mtimeMs": 1779605739053
|
||||
},
|
||||
"wiki/entities/张立峰.md": {
|
||||
"hash": "da0da25497362c049942b8ca7b550937",
|
||||
"size": 810,
|
||||
"mtimeMs": 1779605451497
|
||||
},
|
||||
"wiki/entities/新金属材料全国重点实验室.md": {
|
||||
"hash": "16c5a95b84ab26b43a6cb61b741c7de1",
|
||||
"size": 1431,
|
||||
"mtimeMs": 1779606074882
|
||||
},
|
||||
"wiki/entities/段生朝.md": {
|
||||
"hash": "c3369936cfc6e643df0bbbeb41876eaa",
|
||||
"size": 1271,
|
||||
"mtimeMs": 1779605451466
|
||||
},
|
||||
"wiki/entities/激光熔化沉积.md": {
|
||||
"hash": "a45b0dd5eeb885e8cd0ea0e941719a6d",
|
||||
"size": 3087,
|
||||
"mtimeMs": 1779603789137
|
||||
},
|
||||
"wiki/entities/焦增宝.md": {
|
||||
"hash": "e214515073087218c2b499eeb0d32a5e",
|
||||
"size": 1361,
|
||||
"mtimeMs": 1779606374417
|
||||
},
|
||||
"wiki/entities/牟望重.md": {
|
||||
"hash": "7d01c02f3929655d56bad9c3ddd2f01d",
|
||||
"size": 796,
|
||||
"mtimeMs": 1779605451487
|
||||
},
|
||||
"wiki/entities/郭嘉鸣.md": {
|
||||
"hash": "59a8cc839d791df2e4a5d31b5d2965a5",
|
||||
"size": 993,
|
||||
"mtimeMs": 1779606374408
|
||||
},
|
||||
"wiki/entities/金属学报.md": {
|
||||
"hash": "6a2893833050fa860de8329f2101b4cc",
|
||||
"size": 1222,
|
||||
"mtimeMs": 1779606074889
|
||||
},
|
||||
"wiki/entities/香港理工大学.md": {
|
||||
"hash": "6bedd05376e8e568999b94fddb325b67",
|
||||
"size": 1240,
|
||||
"mtimeMs": 1779606374430
|
||||
},
|
||||
"wiki/entities/高压扭转.md": {
|
||||
"hash": "e7909064710da5f3ba51ca8eee0b48d2",
|
||||
"size": 2918,
|
||||
"mtimeMs": 1779603789132
|
||||
},
|
||||
"wiki/entities/高熵合金.md": {
|
||||
"hash": "1698d9df7ceef912b543d4624251db51",
|
||||
"size": 7790,
|
||||
"mtimeMs": 1779605203895
|
||||
},
|
||||
"wiki/entities/黑龙江省科学院.md": {
|
||||
"hash": "ef176f919d320606d02a58d2f72761f1",
|
||||
"size": 988,
|
||||
"mtimeMs": 1779605203917
|
||||
},
|
||||
"wiki/index.md": {
|
||||
"hash": "c764ae61073f38d3c07c1bfa11828772",
|
||||
"size": 3781,
|
||||
"mtimeMs": 1779630897607
|
||||
},
|
||||
"wiki/log.md": {
|
||||
"hash": "8aa7d47af015913f3130b4e52b5a7d80",
|
||||
"size": 2511,
|
||||
"mtimeMs": 1779630629069
|
||||
},
|
||||
"wiki/overview.md": {
|
||||
"hash": "a1b980aa7d2b49ff4fca9d74daa443bd",
|
||||
"size": 3086,
|
||||
"mtimeMs": 1779606692725
|
||||
},
|
||||
"wiki/queries/--2026-05-24.md": {
|
||||
"hash": "c6f77b622367455284ed38e741bbdb06",
|
||||
"size": 501,
|
||||
"mtimeMs": 1779606716208
|
||||
},
|
||||
"wiki/sources/HfNbTaTiZr 难熔高熵合金中的旋转形变孪晶.md": {
|
||||
"hash": "2b10258919e0953eb2aa9620760335fe",
|
||||
"size": 2639,
|
||||
"mtimeMs": 1779604077297
|
||||
},
|
||||
"wiki/sources/HfNbTaTiZr难熔高熵合金中的旋转形变孪晶.md": {
|
||||
"hash": "091bf3eeaac003c043110492592660bb",
|
||||
"size": 1163,
|
||||
"mtimeMs": 1779604077339
|
||||
},
|
||||
"wiki/sources/激光熔覆制备高熵合金涂层及微观结构.md": {
|
||||
"hash": "ca31230c2cc81b54875038ca310904d7",
|
||||
"size": 5704,
|
||||
"mtimeMs": 1779605739146
|
||||
},
|
||||
"wiki/sources/纳米析出强化高熵合金的研究进展.md": {
|
||||
"hash": "5c384c4663807608a9d600ee3e538438",
|
||||
"size": 7153,
|
||||
"mtimeMs": 1779606374513
|
||||
},
|
||||
"wiki/sources/随着晶粒细化 CoCrFeMnNi 高熵合金中孪晶行为的转变.md": {
|
||||
"hash": "7a2330d70dc2367e90402ef516b70a01",
|
||||
"size": 4067,
|
||||
"mtimeMs": 1779606692741
|
||||
},
|
||||
"wiki/sources/面向极端服役条件的高熵合金结构材料:性能优势、瓶颈与突破路径_吕昭平.md": {
|
||||
"hash": "3bde7b8e1c62de20c4183b1959b09f7f",
|
||||
"size": 12462,
|
||||
"mtimeMs": 1779606074943
|
||||
},
|
||||
"wiki/sources/高低温条件下高熵合金性能与机理的最新进展.md": {
|
||||
"hash": "a76aba528fe6be4d0e80e2cb9d0c25bf",
|
||||
"size": 3168,
|
||||
"mtimeMs": 1779603789107
|
||||
},
|
||||
"wiki/sources/高熵合金与传统合金的摩擦磨损行为对比分析.md": {
|
||||
"hash": "006ededefea73b9a53fc505a43d8550e",
|
||||
"size": 17825,
|
||||
"mtimeMs": 1779604887556
|
||||
},
|
||||
"wiki/sources/高熵合金中非金属夹杂物控制的研究进展.md": {
|
||||
"hash": "e33f64ccf52f03eb6de5ac84c360a18a",
|
||||
"size": 3553,
|
||||
"mtimeMs": 1779605451607
|
||||
},
|
||||
"wiki/sources/高熵合金制备及应用研究进展_宫书林.md": {
|
||||
"hash": "76927c8c58cfa4efa28c550268e8c8e7",
|
||||
"size": 2729,
|
||||
"mtimeMs": 1779605102725
|
||||
},
|
||||
"wiki/sources/高熵合金的低温塑性变形机制及强韧化研究进展.md": {
|
||||
"hash": "d9ad4bee3358cf1d227127301eb31d7e",
|
||||
"size": 16540,
|
||||
"mtimeMs": 1779604499780
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,374 @@
|
|||
{
|
||||
"b2af12191241a48a6e0a6d1d26a8ef22dfe9f1866c72d43aa9d07b3f18b0805e": {
|
||||
"caption": "Figure 1: Schematic of crystal structure in high-entropy alloy (HEA) with severe distortion. The diagram shows a network of atoms including Ni, Co, Al, Cr, Fe, and Ti, with varying colors and sizes, connected by lines indicating atomic bonds. The structure is labeled as having severe lattice distortion.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:34.953Z"
|
||||
},
|
||||
"58e28e95bec4a6e55c75832235ace8653d22706a6a3f9ea979350b68faa7370a": {
|
||||
"caption": "Figure showing engineering stress versus engineering strain curves for CoCrFeNiMn HEA at 77 K and 293 K. The blue curve represents 77 K with σ_b = 2000 MPa, and the red curve represents 293 K with σ_b = 1500 MPa. The x-axis is labeled \"Engineering strain / %\" and the y-axis is labeled \"Engineering stress / MPa\".",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:35.654Z"
|
||||
},
|
||||
"a2cc96ee024c0787051043f8a95fb23f4ddc6aeef95b0fe0159b264fb1337437": {
|
||||
"caption": "The image consists of two micrographs labeled (a) and (b). Micrograph (a) shows a dense network of dislocations with a scale bar indicating 100 nm and an arrow pointing to {111} planes. Micrograph (b) displays a nano-spaced SF network with a scale bar of 50 nm, a dashed box highlighting a 14.5 nm spacing, and arrows indicating {111} planes. The surrounding text references \"Lomer-Cottrell (L-C) lock\" in high-entropy alloys during dislocation motion.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:36.160Z"
|
||||
},
|
||||
"f84aa7e97ecc85af043a3fad263f258bd5c96f287db571f0751ab420bdd07ab4": {
|
||||
"caption": "The image is a microscopic view of a high-entropy alloy (HEA) showing dislocation motion and phase interactions. It features a red background with yellow and white annotations. Yellow arrows labeled \"Glide\" indicate slip directions, with \"LC\" (likely Lomer-Cottrell) and \"SF\" (screw dislocation) notations. White crystallographic planes are marked as \"(111)\" and \"(001)\", and a scale bar indicates 2 nm. The text references Lomer-Cottrell (L-C) locks during dislocation motion.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:36.581Z"
|
||||
},
|
||||
"8ae7394deb7283d76b7d3c1931801b8970ece99fc556a9b8651fb59543bfb8cf": {
|
||||
"caption": "The image consists of two panels labeled (a) and (b). Panel (a) is a high-resolution transmission electron microscopy (HRTEM) image showing a microstructure with a scale bar indicating 50 nm. Two reciprocal lattice vectors, g 111 and g 110, are marked with arrows. Panel (b) is a selected area electron diffraction (SAED) pattern featuring a hexagonal diffraction spot arrangement with labels for specific diffraction spots such as 111, 311, 220, 131, and 131, with arrows pointing to certain spots. A cross symbol indicates the [112] zone axis.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:38.648Z"
|
||||
},
|
||||
"ddc6ec5d0777060ea182be478c236a7c05181c3338017ec783cc45c01f2269c8": {
|
||||
"caption": "The image consists of three panels labeled (a), (b), and (c). Panel (a) shows a microstructure with a yellow square and a yellow line indicating a twinning feature. Panel (b) displays a similar microstructure with a yellow line labeled \"Twinning Plane\" and a scale bar of 2 nm. Panel (c) is a high-resolution transmission electron microscopy (HRTEM) image with a red square and yellow lines, labeled \"Twinning Plane {111}\" and \"Z=[011]\", with a scale bar of 5 1/nm. The text \"rectangle in Fig.5a (c) SAED pattern of the twinning feature\" appears above the image.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:39.928Z"
|
||||
},
|
||||
"8b01970f4af5e079bb7dde987c1ec6940027ebc146b4674c1f4fb21e4e99469c": {
|
||||
"caption": "The image is a composite figure showing microstructural and mechanical behavior of Mo-based alloys at different temperatures. Part (a) displays a micrograph with labeled regions A and B, and a scale bar of 500 nm. Part (b) is a stress-strain curve with engineering stress (MPa) on the y-axis and engineering plastic strain on the x-axis, showing curves for Mo5, Mo4C1, and Mo3C2 at 77 K and 298 K. Part (c) shows two micrographs with color-coded phase fractions (fcc, bcc, hcp) and strain values (ε = 23.1% and ε = 32.2%), with scale bars of 10 μm.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:41.422Z"
|
||||
},
|
||||
"437224193a11629dddbe7e49f9d0b55079c50a8be04d2b29c3aa3ea7b536747f": {
|
||||
"caption": "Scatter plot showing ultimate tensile strength (MPa) on the y-axis against elongation (%) on the x-axis, with data points for various alloys: copper alloy (black squares), aluminum alloy (cyan circles), titanium alloy (orange triangles), stainless steel (gray diamonds), 316LN stainless steel (purple hexagons), and high-entropy alloy (pink stars). A dashed vertical line at 50% elongation and a dashed horizontal line at 1000 MPa are present, with a cluster of high-entropy alloy points highlighted in a pink ellipse.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:42.145Z"
|
||||
},
|
||||
"62087e24bba29a48ed658bd3c45dc45e1170284cbdce49bb5c518a21f6ba5cea": {
|
||||
"caption": "The image is a graph titled \"Strain hardening rate\" on the y-axis and \"True strain\" on the x-axis, showing a curve with five labeled regions (I to V). It includes three red cubic structures with green and yellow patterns, labeled \"bcc at GBs,\" \"SBs,\" and \"bcc on SBs,\" illustrating different microstructural states. The curve peaks at region IV, indicating maximum strain hardening rate.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:43.363Z"
|
||||
},
|
||||
"da1dd49ab92ac7b55307eebe40edd72eea9696920f3676aedd332246412e0030": {
|
||||
"caption": "The image shows a microscopic view of a material with a scale bar indicating 759 µm and 398 µm, likely representing dimensions of features within the sample. The texture appears granular and fibrous, suggesting a composite or intermetallic structure. The image is labeled as \"Fig.11 Eutectic structure of AlCoCrFeNi2.1 HEA\" in the surrounding text, indicating it depicts the eutectic microstructure of a high-entropy alloy.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:46.030Z"
|
||||
},
|
||||
"481b11db1228d25dd3647eddf981c9c8cbd0c00c662e36ed3de906c79e570997": {
|
||||
"caption": "The image is a composite of three electron microscopy micrographs labeled (a), (b), and (c), showing microstructural features of a material. Each panel has a scale bar indicating size: (a) 500 nm, (b) 250 nm, and (c) 500 nm. The micrographs display grain boundaries and phase boundaries, with yellow dashed lines indicating {111} and {110} plane traces. Color-coded labels identify B2 (blue) and L1₂ (red) phases. The surrounding text references \"AlCoCrFeNi2.1 high-entropy alloy\" and \"eutectic structure,\" suggesting the material is a high-entropy alloy.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:46.425Z"
|
||||
},
|
||||
"5cc25d1f106a5f8d86c8ef5eed7ee21ece7df172abbd42a236c32884b610d062": {
|
||||
"caption": "The image is a stress-strain curve graph comparing two conditions: 293 K (black line) and 77 K (red line). The y-axis is labeled \"Engineering stress / MPa\" ranging from 0 to 2000 MPa, and the x-axis is labeled \"Engineering strain / %\" ranging from 0 to 35%. The black line (293 K) has a yield strength (σ_y) of 1100 MPa, ultimate strength (σ_b) of 1220 MPa, ultimate strain (ε_u) of 17.5%, and total strain (ε_t) of 24.5%. The red line (77 K) has a yield strength (σ_y) of 1515 MPa, ultimate strength (σ_b) of 1783 MPa, ultimate strain (ε_u) of 33.0%, and total strain (ε_t) of 37.4%. The curves show higher stress and strain values at 77 K compared to 293 K.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:48.766Z"
|
||||
},
|
||||
"cb78cdf468a7e41c87464f1e1c84d5ee71037a837bdb66b43c2d32d09cb80cf7": {
|
||||
"caption": "The image is a composite of two microstructural analysis figures. Figure (a) shows a transmission electron microscopy (TEM) image with labeled features: \"Cross Slip\" indicated by a yellow arrow, \"DT\" and \"DC\" marked with blue arrows, and a scale bar of 1 μm. Figure (b) is a selected area electron diffraction (SAED) pattern with diffraction spots labeled \"(000)\", \"(211)\", and \"(211)\" in yellow text, and a green circle highlighting a specific spot. The strain ε is noted as 14.3% in the top right of figure (a).",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:50.019Z"
|
||||
},
|
||||
"fce1b718ebaf327035ac910945fb6745e5f79ee3e0971c67393f6b511e8535c2": {
|
||||
"caption": "The image consists of two scatter plots labeled (a) and (b), each plotting yield strength (MPa) and ultimate tensile strength (MPa) against elongation. The x-axis is labeled \"Elongation\" and the y-axis for plot (a) is \"Yield strength / MPa\" while for plot (b) it is \"Ultimate tensile strength / MPa\". Both plots have a range of 0 to 1.2 on the x-axis and 0 to 2500 MPa for plot (a) and 0 to 2600 MPa for plot (b). Various alloys and materials are represented by different symbols and colors, including CoCrFeNiMn, PS-HEA, TRIP-HEA, Eutectic-HEA, TiZrHfNbTa (bcc), HEA, HEA-wire, CoCrNi MEA, SP-HEA, and DP-HEA. The surrounding text references high-entropy alloys (HEA) and medium-entropy alloys (MEA), with a focus on their mechanical properties and applications.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:14:52.048Z"
|
||||
},
|
||||
"327f6ea93231992e2f878fecee531dddfab417683cd87254e158f7eede95ccb7": {
|
||||
"caption": "(a) High-resolution transmission electron microscopy (HRTEM) image showing a 50 nm scale bar and a small inset with diffraction patterns labeled with Miller indices such as 110, 111, 200, 110, 220, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 110, 1",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:15:34.364Z"
|
||||
},
|
||||
"85cce5f9fac566c02552d9ff4efd83d59b0374709b5a39461d09402283f566be": {
|
||||
"caption": "The image is a black and white illustration featuring a tree with a banner that reads \"NON SOLUS\" and a figure standing beside it. Below the illustration, the word \"ELSEVIER\" is prominently displayed in large, bold, orange letters.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:15:58.850Z"
|
||||
},
|
||||
"a919633ea4154eeb2a73cd391eb92c83b160090ce2b9cc036f1d76520db47d43": {
|
||||
"caption": "The image is the cover of the journal \"Acta Materialia,\" featuring a blue background with a molecular structure motif. The cover includes the journal title in large white text, with the words \"STRUCTURE,\" \"PROPERTIES,\" \"MODELLING,\" and \"PROCESSING\" written on interconnected spheres, suggesting a focus on material science. The Elsevier logo and \"ScienceDirect\" branding are also visible.",
|
||||
"mimeType": "image/png",
|
||||
"model": "youtu-vita",
|
||||
"capturedAt": "2026-05-24T05:15:59.538Z"
|
||||
},
|
||||
"ace85844b35bb33317c3eee37ccb0e39dd1189eb0cfd1aeb38eb2d9927875eec": {
|
||||
"caption": "The image displays a shield-shaped emblem with a light blue background and a thick grey border. Central to the design is a large grey gear containing an open book with white pages, flanked by the years \"1838\" on the left and \"1960\" on the right. Above this central element is a partial view of a second grey gear near the top edge of the shield. The surrounding text indicates the image appears in an academic context, preceded by the word \"RESEARCH\" and followed by header information for \"Tribology in Industry Vol. 46, No. 2 (2024).\"",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:32.020Z"
|
||||
},
|
||||
"a0edb30c3fedc55bbf8bba6b56380b4867ba3848367488521394d3132be8cdcd": {
|
||||
"caption": "Identified by the surrounding text as part of a high entropy alloy analysis (labeled \"b- HEA\"), this plot displays a red line graph with an x-axis spanning 20 to 90 and a y-axis ranging from 120 to 420. A box in the upper right corner reads \"HEA\", and the data features four labeled peaks corresponding to crystallographic planes: \"B2/BCC{102}\" near x=28, a dominant peak \"B2/BCC{110}\" near x=41, a minor feature \"B2/BCC{200}\" near x=58, and a second major peak \"B2/BCC{211}\" near x=74.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:40.068Z"
|
||||
},
|
||||
"12694e869a0574d8e878ee47dea74dceaab1cf5bdabcaf03dfb5b5fd190dade9": {
|
||||
"caption": "This scanning electron micrograph displays a heterogeneous material microstructure featuring light-colored, blocky phases alongside darker regions with fine, lamellar or dendritic patterns. Technical parameters at the bottom indicate the image was taken with a Nova NanoSEM using a BSED detector at 250x magnification, 20.0 kV HV, and a 5.1 mm working distance. A scale bar representing 500 µm is visible in the lower right corner, and the acquisition date is recorded as 9/14/2015 at 9:39:43 PM.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:47.190Z"
|
||||
},
|
||||
"665d4f5fb0e1babad8c18069341098b9310a928f94d3fd03ed535f2385b07c5b": {
|
||||
"caption": "This grayscale micrograph displays a complex material microstructure characterized by elongated, columnar grains and blocky regions, captured using a Nova NanoSEM with a BSED detector. The information bar at the bottom lists technical parameters including a working distance (WD) of 5.0 mm, high voltage (HV) of 20.0 kV, and a magnification (mag) of 200 x, dated 7/10/2015. A scale bar in the bottom right corner indicates a length of 500 µm. The surrounding text references an AlNbTiV HEA, suggesting this image depicts the solid microstructure of that specific high-entropy alloy.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:57.915Z"
|
||||
},
|
||||
"47483b7d37fd2329fa4c56583e5a1825369e21a7b1c2e27ebc817a796bbf0b79": {
|
||||
"caption": "This line graph plots \"Vickers Hardness\" on the vertical axis, ranging from 300 to 600, against \"Displacement into the surface(mm)\" on the horizontal axis, which spans from 0 to 12. A legend in the upper right corner distinguishes between two data series: a red line labeled \"Conventional\" and a blue line labeled \"HEA.\" The blue HEA line consistently shows higher hardness values, fluctuating between approximately 545 and 580, whereas the red Conventional line remains lower, varying roughly between 310 and 390. Although the surrounding text references a \"Fig. 5. Friction curve,\" the visual content specifically depicts hardness measurements relative to surface displacement.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:58.853Z"
|
||||
},
|
||||
"a4fa46c1b5c38f31e1334de054b1cb7db3cfcee7c550cf7a16797c4a340b231a": {
|
||||
"caption": "This line graph presents an orange data series on axes ranging from 20 to 90 on the x-axis and 190 to 590 on the y-axis. The plot features a noisy baseline fluctuating between 190 and 240, dominated by a sharp, high-intensity peak near x=40 that reaches approximately 590. Visible text includes a box labeled \"Conventional\" in the top right corner, the Greek letter \"β\" adjacent to the peak, and the equation \"β= BCC\" on the right. The surrounding text references \"Ti-based conventional\" material, which corresponds to the \"Conventional\" label found in the image.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:35:59.228Z"
|
||||
},
|
||||
"7341e8f40a61b0f5d5f984a34952dbc1b3240256355247665dbfe4402a1e6f1c": {
|
||||
"caption": "This line chart, identified by the surrounding text as a friction curve of conventional and high entropy alloy at 27°C, plots Friction Coefficient on the vertical axis against Sliding Distance(m) on the horizontal axis. The y-axis ranges from 0.0 to 1.2, while the x-axis extends from 0 to 200 meters. A legend in the upper right corner distinguishes between a blue line labeled \"Conventional\" and a green line labeled \"HEA,\" both of which exhibit significant fluctuation, primarily oscillating between friction coefficient values of 0.5 and 0.8.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:07.675Z"
|
||||
},
|
||||
"39b6522296d07720f5e5eac539e8b7624ddfe84e7455d66b652f39f2566cf91e": {
|
||||
"caption": "This grayscale scanning electron microscope (SEM) micrograph displays a textured surface characterized by vertical striations and dark, elongated regions. Superimposed yellow text reads \"Sliding direction\" above three upward-pointing yellow arrows, indicating the orientation of friction or wear. The metadata bar at the bottom identifies the instrument as a Nova NanoSEM with a magnification of 400x and a scale bar of 300 µm. Additional technical details include a date of 4/4/2016, a working distance of 5.5 mm, and a high voltage of 10.0 kV.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:16.415Z"
|
||||
},
|
||||
"4b6f58630fee7c75e0e9bc6ff6220580f25a5bb88c15ed92cb27dc64b34c9a10": {
|
||||
"caption": "This line chart plots the Friction Coefficient on the y-axis, ranging from 0.0 to 1.4, against the Sliding distance(m) on the x-axis, which extends from 0 to 200. A legend in the top right corner identifies a green line as \"HEA\" and a blue line as \"conventional.\" The green HEA data series fluctuates at a lower level, generally staying between 0.3 and 0.5, while the blue conventional series exhibits higher friction values, mostly oscillating between 0.5 and 0.9 with several sharp spikes reaching above 1.0.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:27.180Z"
|
||||
},
|
||||
"cd46cfc6faf2d81a8c97d3726d7b1c9bffa9cfbe8eae4c764bf201669ab6141c": {
|
||||
"caption": "This scanning electron microscope (SEM) micrograph displays a material surface with a striated texture, where yellow arrows point to dark, irregular regions labeled \"Oxide patches.\" The image includes a data bar at the bottom indicating a magnification of 700x, a working distance of 6.8 mm, and a high voltage of 10.0 kV using a BSED detector. A scale bar on the right represents 100 µm, and the image is timestamped 4/4/2016 at 10:29:06 AM, captured on a Nova NanoSEM.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:31.623Z"
|
||||
},
|
||||
"2f66d657683cb54ea082a0f6601e360c7955dcbcdd4272bd41cce658928ce9c9": {
|
||||
"caption": "This line chart plots Friction Coefficient on the y-axis ranging from 0.0 to 1.2 against Sliding Distance(m) on the x-axis ranging from 0 to 200. A legend in the upper right corner identifies two series: a blue line labeled Conventional and a green line labeled HEA. The Conventional line stabilizes at a higher friction coefficient around 1.0, while the HEA line stabilizes at a lower coefficient between 0.6 and 0.7. The surrounding text references a Ti-based conventional alloy, providing context for the Conventional label.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:33.343Z"
|
||||
},
|
||||
"60a17edebbc1c0a33f35608398ad1e1a622aa3af4546e8cf979d7e9fd7bda101": {
|
||||
"caption": "This scanning electron micrograph, captured using a Nova NanoSEM at 5,000x magnification, displays a worn material surface annotated with yellow text and arrows to highlight specific features. The labels identify detached debris as \"Flakes\" and parallel linear striations running diagonally across the lower section as \"Grooves.\" Technical metadata at the bottom indicates a working distance of 5.6 mm, an accelerating voltage of 10.0 kV, a BSED detector, and a scale bar representing 20 µm. The surrounding file path context suggests this image is part of a comparative analysis of friction and wear behavior in alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:43.251Z"
|
||||
},
|
||||
"1839e8aa6b756387035c50d7d3be976412d745a60f2e36345be59474cbc0d1fc": {
|
||||
"caption": "This micrograph shows a circular wear track or contact area on a material surface, characterized by a lighter, relatively smooth central region speckled with fine dark particles. A distinct dark, arc-shaped accumulation of debris or oxidation lines the upper edge of the circle, while a yellowish-green residue or material deformation is visible on the right side. The surrounding area is textured and scattered with debris, consistent with a microscopic examination of surface damage related to the document's topic of friction and wear behavior analysis.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:43.666Z"
|
||||
},
|
||||
"1fc7f9f23c0ac0b47abaa4a8fcec2bafbc360c0189883ebd66b74c17b975cd58": {
|
||||
"caption": "This microscopic image, identified by the surrounding text as part of an SEM wear track analysis (Fig. 9), features a prominent, bright circular area centered against a dark background. The region surrounding the central circle is scattered with fine, dark particulate debris, while the bottom of the frame shows a rough, textured surface with irregular, jagged edges. The high-contrast lighting highlights the difference between the smooth central zone and the surrounding rougher material, consistent with magnified imaging of surface wear.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:50.445Z"
|
||||
},
|
||||
"21a3b97ce4631c4073cc4d1ebd90d8ac2f511371ffc31f95d19609a6eedb1d9c": {
|
||||
"caption": "The image displays a microscopic view of a circular, light-colored surface feature, possibly a wear track, set against a darker background. A pile of light yellow, powdery debris is clustered in the upper right quadrant near the circular area. A red scale bar is visible in the bottom right corner, providing a reference for magnification. The surrounding document text references a comparative analysis of friction and wear behavior in high-entropy alloys and traditional alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:36:58.686Z"
|
||||
},
|
||||
"e93bf1aa479a6c4afb1ef5f73008c9517e489fc5af153fb98e146726b9d85c0f": {
|
||||
"caption": "This scanning electron microscope image, captured with a Nova NanoSEM at 5 004 x magnification, shows a textured surface annotated with yellow arrows and text. The labels identify \"Abrasion traces\" in the rougher upper section and \"Grooves\" in the striated lower section. Technical parameters at the bottom indicate an accelerating voltage (HV) of 20.0 kV, a working distance (WD) of 5.8 mm, and a horizontal field width (HFW) of 59.6 µm, with a scale bar representing 20 µm. The surrounding document context suggests this image is part of a comparative analysis of friction and wear behavior in alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:10.733Z"
|
||||
},
|
||||
"9e76b82f7ce950ac1eb079e6c173ced16b8ef0a303b6fbdfd6304e3c32782cba": {
|
||||
"caption": "This scanning electron microscope micrograph displays a textured surface at 3,000x magnification where yellow arrows point to dark regions labeled \"Oxide patches\". The data bar at the bottom lists imaging parameters including an HFW of 99.5 µm, HV of 20.0 kV, current of 6.1 nA, and a WD of 5.8 mm. A scale bar indicating 30 µm is visible in the bottom right corner alongside the instrument name Nova NanoSEM. The text immediately preceding the image mentions \"tribochemical components,\" providing context for the observed surface oxidation.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:10.826Z"
|
||||
},
|
||||
"b7aa0625c8cb870963b0e16e5e362c5a71c4929ceb1ebafbbf2ac49857998012": {
|
||||
"caption": "This micrograph displays a central, light-colored circular region surrounded by a darker, textured background, with visible surface scratches and scattered debris. A red scale bar labeled \"50 um\" appears in the bottom right corner to indicate magnification. The image is situated within a document comparing the friction and wear behavior of high-entropy alloys and traditional alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:18.067Z"
|
||||
},
|
||||
"8ee8df4189520a33f557f82acb1d5b96ca95371930b859a6b1f360cd5708153a": {
|
||||
"caption": "This scanning electron micrograph displays a textured surface with dark, scattered patches, annotated by a yellow arrow and the text \"Sliding direction\" pointing upward. Technical parameters at the bottom indicate a magnification of 500 x, a high voltage of 20.0 kV, and a detector type of BSED, with a scale bar of 200 µm. The image is labeled \"Nova NanoSEM\" in the bottom right corner and is contextually linked to surrounding text discussing wear in Ti-based conventional alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:18.221Z"
|
||||
},
|
||||
"f5627daba11215def71d6f7669f6d04f5b6ebd70af7696691b3293b95baa2e91": {
|
||||
"caption": "The image presents a microscopic close-up of a dark, granular material surface, illuminated primarily from the left side against a dark background. A large, roughly circular region with a highly textured, rough appearance dominates the center, resembling a wear scar or specific microstructural phase. While the image contains no internal text or axes, the surrounding document text references a \"Ti-based conventional alloy,\" indicating this is likely a micrograph used in a tribological or materials science analysis.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:31.057Z"
|
||||
},
|
||||
"699cc66a64e3fed5058ea783e45248aed3e3f16c8448e19bc3f4114593ddc4b1": {
|
||||
"caption": "The image displays a close-up, likely microscopic view of a circular surface area characterized by a grey, granular texture with visible horizontal striations and scratches across the center. The central region is bounded by a darker, irregular ring, resembling a wear track or scar typically examined in tribological analysis. Small bright reflections are visible near the upper left edge of the circular boundary, contrasting with the darker surrounding area.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:32.560Z"
|
||||
},
|
||||
"b6ee86cfa91dbcc991470369eac22f1401b27842eb00aca9173ef1e69717dd5c": {
|
||||
"caption": "The image displays a Raman spectroscopy graph with the x-axis labeled \"Raman Shift(cm⁻¹)\" ranging from 0 to 2200 and the y-axis labeled \"Intensity(A.U.)\". A legend in the top right identifies a green line as \"Conventional\" and a red line as \"HEA\". The red HEA curve exhibits peaks labeled NbO₂, Cr₂O₃, and TiO₂, while the green Conventional curve shows a lower-intensity peak labeled Nb₂O₅ and two subsequent peaks aligned with the Cr₂O and TiO₂ positions by vertical dashed lines.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:37:41.337Z"
|
||||
},
|
||||
"a70ca9b75380f9e8b820ac4797f2bbd735a5add776c665cfde6a6c328ba5a401": {
|
||||
"caption": "The image displays the header banner for the \"Chinese Journal of Engineering\" set against a solid reddish-brown background. On the left side are two circular logos: the first depicts a building with the text \"University of Science and Technology Beijing 1952,\" and the second shows a stylized bird with the text \"Chinese Journal of Engineering.\" To the right of these emblems, the journal title is printed in large white Chinese characters \"工程科学学报\" followed by the English translation \"Chinese Journal of Engineering\" underneath. The surrounding text indicates this header belongs to a 2021 publication featuring research on high entropy alloy coatings.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:47:00.606Z"
|
||||
},
|
||||
"a00f2c37b32ceab4d92611f6fc62fca43e9096b47eff97beeab88db5d8651c1e": {
|
||||
"caption": "The image presents two schematic diagrams labeled a and b detailing a laser cladding process and a mechanical test setup. Diagram a illustrates \"Four channels for powder particles blowing\" onto a \"Substrate\" via a nozzle, forming a \"Coating\" with a specified \"Laser spot diameter : 1.5 mm\" and an indicated \"Scanning path.\" Diagram b depicts a yellow \"Tensile sample\" positioned over a \"Coating\" within a \"Trapezoidal groove\" on the \"Substrate,\" visualizing the configuration for the tensile test described in the subsequent text to confirm bonding force.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:51:16.875Z"
|
||||
},
|
||||
"ce8b7626fb2dd6431a8340fc51b4a3f579333f077b5572da2090c906d0d40ae4": {
|
||||
"caption": "This composite figure presents five micrographs labeled a through e that detail the cross-sectional microstructure of a material system. Panel a serves as a low-magnification overview (500 µm scale) explicitly labeling the \"Coating,\" \"Interface,\" \"Substrate,\" and \"Heat-affect zone,\" with dashed white boxes outlining areas shown in higher detail in the other panels. Panels b and c offer intermediate magnifications (100 µm and 40 µm scales) of the interface region, while panels d and e show fine microstructural details at a 20 µm scale. The surrounding text fragment \"e and substrate respectively\" implies that panel e depicts the substrate microstructure mentioned in the study.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:51:18.852Z"
|
||||
},
|
||||
"8ba3aae187650021d75b0e516904fd8c70652660db4deb112d52e992f9219549": {
|
||||
"caption": "This figure consists of two grayscale micrographs labeled 'a' and 'b' showing surface morphologies, with context from the file path suggesting they depict high entropy alloy coatings. Panel 'a' displays a cracked, cellular surface structure with a central region containing dark, irregular voids or inclusions, marked by a scale bar of 20 um. Panel 'b' shows a lower magnification view featuring a central, rough-textured cluster on a smoother background, accompanied by a scale bar of 100 um.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:51:24.201Z"
|
||||
},
|
||||
"0839228da912365d19829e3283d23c6d4d75e44f069b4994c4be5fa4fa718dcd": {
|
||||
"caption": "This figure, likely identified as Figure 4 based on the trailing text fragment, presents a mechanical comparison between a locally cladding sample and a substrate through a graph and photographs. Panel a plots Engineering stress (MPa) versus Engineering strain (%), showing blue curves for the \"Locally cladding sample\" reaching higher stress peaks around 530 MPa but failing earlier than the black \"Substrate\" curve, alongside a schematic inset illustrating the \"Coating\" on the \"Substrate\". Panel b displays two dog-bone shaped metal specimens next to a ruler marked in \"mm\", with labels indicating the \"Substrate\" and \"Coating\" regions; the bottom specimen exhibits significant necking and deformation in the coated section compared to the smoother top specimen.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:51:33.474Z"
|
||||
},
|
||||
"e5a334d3414835ab7f574a06ea8cd1a4345ca0f2b213d47e8ecd9496bb01283e": {
|
||||
"caption": "This scientific plot displays Potential (V) on the vertical axis ranging from -1.5 to 1.0 versus current density i (A·cm⁻²) on a logarithmic horizontal axis from 1E-10 to 1. Two polarization curves are visible: a blue line labeled \"Coating\" and a black line labeled \"Substrate.\" The \"Coating\" curve generally maintains a lower current density than the \"Substrate\" curve in the anodic region before rising sharply, while the \"Substrate\" curve extends further into the cathodic region down to -1.5 V.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:51:40.483Z"
|
||||
},
|
||||
"4ac1caedaf86e39a1d1979d944067c2e1d36c9628f61b883423535890f2769d9": {
|
||||
"caption": "The image shows the cover of the journal \"金属学报\" (Acta Metallurgica Sinica) featuring a muted olive-green background with four circular logos aligned at the top. Centered on the page is a rectangular grayscale micrograph depicting a material surface with fracture lines and spherical features. The bottom area displays logos for the Chinese Society for Metals and Science Press on the left, a QR code on the right, and text reading \"www.ams.org.cn\" alongside copyright information for 2024.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:55:58.017Z"
|
||||
},
|
||||
"366962c0fc9ea1f83dba78f0fd51f6400fb0b4f530373ad67cc54bd32ace936c": {
|
||||
"caption": "The image shows a standard black and white QR code matrix with three distinct square finder patterns located in the corners. The surrounding text identifies the associated document as a paper titled \"High-entropy alloy structural materials facing extreme service conditions: performance advantages, bottlenecks, and breakthrough paths\" by Lv Zhaoping. The text preceding the image explains that this code links to the \"China Academic Journals (Network Version)\" (ISSN 2096-4188), noting that such network-first publications are considered formal releases.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:01.293Z"
|
||||
},
|
||||
"ab8c3e815434e655d6484d27bda5863b61a0d49a7f490137c8169be2b6df9ac4": {
|
||||
"caption": "The image consists of a solid gray background featuring a single thin black horizontal line near the top edge. No text, charts, or other visual elements are present within the image frame itself. Based on the surrounding text, this image appears within a document from Acta Metallurgica Sinica titled \"High-entropy alloy structural materials for extreme service conditions: Performance advantages, bottlenecks, and breakthrough paths\" by Lv Zhaoping.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:06.746Z"
|
||||
},
|
||||
"9505593d7e88680c9db2df5555699f047707be3ebd49b75c029319066ecce170": {
|
||||
"caption": "This line graph compares the strength performance of various alloy systems, with data series categorized by color and symbol in a legend on the right side. The legend identifies black lines for Haynes 230 and Inconel 718, red lines for refractory alloys like T222 (Tantalum alloy) and TZM (Molybdenum alloys), blue lines for high-entropy alloys including NbMoTaW and (NbMoTaW)99.5B0.5, and green dotted lines for interstitially strengthened alloys such as NbMoWRe0.5(TaC)0.9 and W20Ta30Mo20C30. The chart features shaded background regions corresponding to these groups, with the green curves generally showing the highest values and the red/black curves showing the lowest. The surrounding text identifies this visualization as Figure 2, noting specifically that the (NbMoTaW)99.5B0.5 alloy achieves a yield strength of > 500 MPa at 1600 °C.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:16.809Z"
|
||||
},
|
||||
"9d3f93524e4c9c98f256d5512d9f1d454b192614f7af3b7f787a4d04194387c2": {
|
||||
"caption": "This composite figure presents microstructural analysis and mechanical properties of high-entropy alloys, featuring panel (a) with a TEM image labeling \"BCC\" and \"HCP\" phases alongside a diffraction pattern inset, and panel (b) showing a high-resolution \"Phase boundary\" between BCC and HCP structures with elemental maps for Nb, Mo, Ta, W, and C below. On the right, two stress-strain graphs display data for samples labeled C0, C4, C10, and C16; the top chart is titled \"Compressed at RT\" with an Engineering stress (GPa) axis ranging from 0 to 3500, while the bottom chart is titled \"Compressed at 1600°C\" with an Engineering stress (MPa) axis from 0 to 1600. The surrounding text references \"ACTA METALLURGICA SINICA\" and discusses \"耐极低温高熵合金\" (cryogenic-resistant high-entropy alloys), contextualizing the data within extreme environment material research.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:27.775Z"
|
||||
},
|
||||
"7c891534cc042e0b08739b374451473c7d47917453b31158180214f3464d480e": {
|
||||
"caption": "The image presents two panels detailing the temperature-dependent mechanical behavior and microstructural evolution of an alloy. The left panel is an engineering stress-strain graph plotting curves for temperatures ranging from 277 K to 77 K, demonstrating that yield strength and flow stress increase significantly as the temperature drops, with the 77 K curve reaching approximately 1600 MPa. The right panel features a schematic diagram labeled \"Decreasing deformation temperature\" with a gradient arrow from 277 K to 77 K, illustrating a transition in deformation mechanisms from primarily \"dislocation\" activity at higher temperatures to the formation of \"twin\" structures and an \"interfacial ω phase\" at lower temperatures.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:39.680Z"
|
||||
},
|
||||
"7aa84370ea63efb23c0a020419c80bca4575988aaf5e8069b8259e562ec2fef1": {
|
||||
"caption": "The image presents a comparative schematic and data panel contrasting \"Base RHEA\" on the left with \"Doping 5000 ppm Boron\" on the right, connected by a central arrow labeled \"GB Engineering\" and \"Doping B/C\". The left section, attributed to \"Oxygen Embrittlement,\" displays an SEM image of \"Intergranular fracture,\" a stress-strain graph showing the material is \"Brittle at ambient temperature\" (25 °C), and atom probe tomography revealing \"O-2.1 at% iso-surfaces\" along a grain boundary. The right section, labeled \"GB Strengthening,\" shows an SEM of \"Intragranular fracture,\" stress-strain curves indicating that \"Doping B dramatically enhance both strength and plasticity\" at 25 °C and improves strength at 1600 °C, alongside high-resolution TEM and atom probe data visualizing boron segregation (\"B-1.37 at% iso-surfaces\") at the grain boundary. Legends identify elemental distributions for Nb, Mo, Ta, W, O, and B.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:39.983Z"
|
||||
},
|
||||
"b2f2ce875d1305a0f25df41e107acfe16a8dd582a2adbd9d7fdce22cb7ac7016": {
|
||||
"caption": "The top left panel (a) presents a graph of J-Integral versus Crack extension for CrCoNi, displaying data curves for temperatures 20 K, 77 K, 198 K, and 293 K alongside toughness values K_JIC = 459 MPa·m^0.5 and K_SS = 544 MPa·m^0.5. To its right, panel (b) is an Ashby map plotting Fracture Toughness versus Yield Strength for a broad class of materials, featuring a specific orange marker for CrCoNi-based HEAs positioned near metallic glasses. The lower portion of the figure, labeled 20 K-deformed sample, consists of six microscopy images (D-I) revealing microstructural details like Stacking Faults, Nano Twin, and HCP phases, with panels F and I showing Virtual DF image views and Virtual SAD diffraction pattern insets.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:42.770Z"
|
||||
},
|
||||
"2498b7aef8f644021978839d40ebc4e00c07520f9bc3211544f7005d59c7ab21": {
|
||||
"caption": "The image displays four vertical micrographs labeled \"Ni\", \"NiFe\", \"NiCoFe\", and \"NiCoFeCrMn\" at the bottom, arranged alongside a vertical depth scale on the left ranging from 0 to 2,000. The \"Ni\" panel shows large, bright, faceted defects scattered throughout the upper 1,500 units of depth, whereas the \"NiFe\" panel contains significantly fewer defects, mostly small bright spots near the bottom. The \"NiCoFe\" and \"NiCoFeCrMn\" panels exhibit bands of small, bright point defects concentrated near the 1,500 depth mark, with the upper regions appearing relatively clear. Surrounding text indicates these samples were radiated with 3MeV Ni+ ions, illustrating the influence of the number of principal elements on irradiation defects in alloys.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:56:50.579Z"
|
||||
},
|
||||
"0401d2f6bbfb71077ff66a57593720fe56eac51294195619cc34f90f7066c8e3": {
|
||||
"caption": "The image contains four scientific plots comparing NiCoFeCrMn and NiCoFeCrMn-CN alloys. The top-left panel includes a histogram of CSRO size in nanometers versus frequency percentage and a bar chart of Area fraction percentage for the two alloys. Panel b) displays two line graphs of Atomic ration versus Position in nanometers for elements Ni, Co, Fe, Cr, and Mn, showing distinct fluctuation patterns between the NiCoFeCrMn and NiCoFeCrMn-CN samples. The bottom-left graph plots Swelling percentage against Temperature in degrees Celsius at 420 and 540, indicating higher swelling for the NiCoFeCrMn sample (black bar) at 540°C. The bottom-right panel presents a combined chart with diffusion coefficient D in Angstroms squared per picosecond on the left axis and the ratio D_vac/D_inter on the right axis, plotted for conditions with and without CSRO for both alloy types.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T06:57:32.643Z"
|
||||
},
|
||||
"ffe857675c445f305e05a6bbe55a6f6f859968254b4e13ec87660896e245f6bc": {
|
||||
"caption": "The image displays a horizontal, pill-shaped banner with a light silver gradient background and a drop shadow. Centered within the graphic are four large, black Chinese characters written in a bold, calligraphic brush style: \"特约专栏\". This visual element serves as a header, likely indicating a \"Special Column\" section within the document.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:01:40.220Z"
|
||||
},
|
||||
"f4ba19a5ac7108cdf1ac8da5c082eb524d07cafc653befdacc39c9952c99ff0e": {
|
||||
"caption": "Panel a displays engineering stress-strain curves comparing a \"CNL alloy\" (red line), a \"Severely deformed alloy\" (blue line), and a \"Conventionally processed alloy\" (black line), where the y-axis represents \"Engineering stress (MPa)\" up to 2000 and the x-axis represents \"Engineering strain (%)\" up to 20. Panel b presents microstructural analysis, starting with a high-resolution TEM image with a 1 nm scale bar that distinguishes between \"FCC\" and \"L1₂\" phases using FFT patterns labeled \"Z=[001]\". Below the TEM image are elemental distribution maps for Fe, Co, Cr, Ni, Al, and Ti, alongside an \"All\" composite map, which use a 50 nm scale bar and arrows to indicate the spatial correlation with the \"FCC\" and \"L1₂\" phases.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:01:47.588Z"
|
||||
},
|
||||
"e4c8f173222071e0505f41aef7f77642f5a2a9550d6a7833b40160a5d4e7fa14": {
|
||||
"caption": "The image presents a composite figure containing an engineering stress-strain curve labeled 'a' and a sequence of micrographs labeled 'b'. The graph plots Engineering stress in MPa versus Engineering strain in percent for a \"Base alloy,\" \"Al8Ti6,\" and \"Al7Ti7,\" showing the Al7Ti7 sample achieving the highest strength over 1400 MPa and elongation past 50%. The lower section displays three microscopy images taken at 10%, 20%, and 38% strain, with specific features labeled \"HDDWs\" and \"MBs\" visible in the latter two images alongside scale bars of 0.5 μm and 2 μm. A color-gradient arrow at the bottom points right with the text \"Increased plastic deformation,\" linking the microstructural changes to the increasing strain levels.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:01:48.467Z"
|
||||
},
|
||||
"99708e63f87290fabfc317df487eb9584c7cc27cfba8e757e4b29653e18ef5f3": {
|
||||
"caption": "The image displays two electron microscopy panels, labeled 'a' and 'b', analyzing microstructural phases in an alloy. Panel 'a' shows a field of bright, dot-like L12 precipitates distributed within an FCC matrix, marked with a 200 nm scale bar and an inset diffraction pattern labeled Z = [110] with a scale of 5 1/nm. Panel 'b' depicts blocky B2 phases surrounded by a BCC matrix, indicated by a 50 nm scale bar and white arrows pointing to interfacial regions, alongside an inset diffraction pattern indexing crystallographic planes such as (001)B2 and (011)BCC.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:01:51.117Z"
|
||||
},
|
||||
"54dcfc54fe9d70b521fd948b710535d57f08e0a5a2cc6596436d274233234b1e": {
|
||||
"caption": "The image presents two transmission electron microscopy micrographs, labeled 'a' and 'b', analyzing phase structures within a material. Panel 'a' shows dark regions labeled \"fcc\" situated within a \"σ phase\" matrix, featuring a red square highlight and an inset diffraction pattern with indices (220), (311), and (1-11) next to a 200 nm scale bar. Panel 'b' displays a complex microstructure labeled \"fcc\" with needle-like precipitates pointed to by a red arrow, accompanied by an inset diffraction pattern labeled \"μ phase\" with indices 000, 10-10, and 01-11, and a 1 μm scale bar.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:02:08.559Z"
|
||||
},
|
||||
"1955c6bac38c66b32ed16b2a11c0976818c61c06c52b0a99aad742784a13c655": {
|
||||
"caption": "This schematic diagram illustrates microstructural evolution over \"Aging time,\" categorized into stages of \"Chemical separation\" and \"Structural ordering/disordering.\" Two parallel pathways are shown originating from a microstructure map: the top row follows an \"fcc phase\" through \"Spinodal decomposition,\" an \"Ordering transformation (fcc → L12),\" and \"Growth,\" while the bottom row follows an \"L21 phase\" through \"Spinodal decomposition,\" a \"Disordering transformation (L21 → bcc),\" and \"Growth.\" Visual representations progress from speckled spheres representing initial decomposition to ordered arrays of precipitates or striations that coarsen in the final growth stage.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:02:13.434Z"
|
||||
},
|
||||
"80727b4d949f4ea9727f39195d6a7f741d60e78aa065a19508795865d50e7bdb": {
|
||||
"caption": "The image consists of two transmission electron microscopy (TEM) micrographs labeled 'a' and 'b' showing microstructural details of an alloy. Panel 'a' is a high-resolution lattice image identifying \"FCC\" and \"L12\" phases within pink and yellow boxes respectively, accompanied by inset diffraction patterns and a 5 nm scale bar. Panel 'b' shows a lower magnification view containing a large, dark particle labeled \"Laves\" with white arrows pointing to its boundary, scaled at 500 nm. The surrounding text references research on high-entropy alloys and precipitation mechanisms involving FCC, L21, L12, and BCC phases.",
|
||||
"mimeType": "image/png",
|
||||
"model": "qwen3.5-plus",
|
||||
"capturedAt": "2026-05-24T07:02:24.226Z"
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,174 @@
|
|||
{
|
||||
"entries": {
|
||||
"高低温条件下高熵合金性能与机理的最新进展.pdf": {
|
||||
"hash": "5cc9f4721d9d090fd77cba2058f0ae5893515b046b2744a1e1a0b1c09929331a",
|
||||
"timestamp": 1779603789171,
|
||||
"filesWritten": [
|
||||
"wiki/sources/高低温条件下高熵合金性能与机理的最新进展.md",
|
||||
"wiki/entities/高熵合金.md",
|
||||
"wiki/entities/cocrfemnni-合金.md",
|
||||
"wiki/entities/原子探针断层扫描.md",
|
||||
"wiki/entities/高压扭转.md",
|
||||
"wiki/entities/激光熔化沉积.md",
|
||||
"wiki/concepts/低温强韧化.md",
|
||||
"wiki/concepts/纳米孪晶.md"
|
||||
]
|
||||
},
|
||||
"HfNbTaTiZr难熔高熵合金中的旋转形变孪晶.pdf": {
|
||||
"hash": "4bbb9e92500392544f3dc41495ad02acd743f0e0a751a718628f990ff81017f7",
|
||||
"timestamp": 1779604077363,
|
||||
"filesWritten": [
|
||||
"wiki/sources/HfNbTaTiZr 难熔高熵合金中的旋转形变孪晶.md",
|
||||
"wiki/entities/HfNbTaTiZr 合金.md",
|
||||
"wiki/entities/Oleg-N-Senkov.md",
|
||||
"wiki/concepts/旋转形变孪晶.md",
|
||||
"wiki/concepts/剪切孪晶.md",
|
||||
"wiki/concepts/孪晶要素.md"
|
||||
]
|
||||
},
|
||||
"高熵合金的低温塑性变形机制及强韧化研究进展.pdf": {
|
||||
"hash": "3b28713249e0b14eb0f461c7724782e5eda76e4c338328ac5f02e71620d2d9c9",
|
||||
"timestamp": 1779604499816,
|
||||
"filesWritten": [
|
||||
"wiki/sources/高熵合金的低温塑性变形机制及强韧化研究进展.md",
|
||||
"wiki/entities/高熵合金.md",
|
||||
"wiki/entities/cantor-合金.md",
|
||||
"wiki/entities/cocrfeni-合金.md",
|
||||
"wiki/entities/cocrni-合金.md",
|
||||
"wiki/concepts/低温强韧化.md"
|
||||
]
|
||||
},
|
||||
"高熵合金与传统合金的摩擦磨损行为对比分析.pdf": {
|
||||
"hash": "024161dc10b696014f935118745458fd311b0767eb9ca4ea1e4a6c897cc515f9",
|
||||
"timestamp": 1779604887588,
|
||||
"filesWritten": [
|
||||
"wiki/sources/高熵合金与传统合金的摩擦磨损行为对比分析.md",
|
||||
"wiki/entities/tivnbrcral-高熵合金.md",
|
||||
"wiki/entities/tinbcrcoal-传统合金.md",
|
||||
"wiki/concepts/固溶强化.md",
|
||||
"wiki/concepts/摩擦化学反应层.md",
|
||||
"wiki/concepts/体心立方结构.md"
|
||||
]
|
||||
},
|
||||
"高熵合金制备及应用研究进展_宫书林.pdf": {
|
||||
"hash": "c011a587b740b6176e1ae9b4194da67f26b328e92d5c5b22232b4d8bb234a0d7",
|
||||
"timestamp": 1779605204095,
|
||||
"filesWritten": [
|
||||
"wiki/sources/高熵合金制备及应用研究进展_宫书林.md",
|
||||
"wiki/entities/高熵合金.md",
|
||||
"wiki/entities/宫书林.md",
|
||||
"wiki/entities/黑龙江省科学院.md",
|
||||
"wiki/concepts/高熵合金四大效应.md",
|
||||
"wiki/concepts/高熵合金制备工艺.md",
|
||||
"wiki/concepts/高熵合金粉末技术.md",
|
||||
"wiki/concepts/高熵合金应用领域.md",
|
||||
"wiki/concepts/选区激光熔化.md",
|
||||
"wiki/concepts/等离子旋转电极雾化.md",
|
||||
"wiki/concepts/热等离子球化.md",
|
||||
"wiki/index.md",
|
||||
"wiki/log.md",
|
||||
"wiki/overview.md"
|
||||
]
|
||||
},
|
||||
"高熵合金中非金属夹杂物控制的研究进展.pdf": {
|
||||
"hash": "1521c032271c61d3f93851be65bdfd4860f8f34166bdf05a27152da249527aab",
|
||||
"timestamp": 1779605451664,
|
||||
"filesWritten": [
|
||||
"wiki/sources/高熵合金中非金属夹杂物控制的研究进展.md",
|
||||
"wiki/entities/段生朝.md",
|
||||
"wiki/entities/park-joo-hyun.md",
|
||||
"wiki/entities/牟望重.md",
|
||||
"wiki/entities/张立峰.md",
|
||||
"wiki/entities/cocrfemnni-高熵合金.md",
|
||||
"wiki/entities/fe40mn20cr20ni20-高熵合金.md",
|
||||
"wiki/entities/北方工业大学.md",
|
||||
"wiki/entities/工程科学学报.md",
|
||||
"wiki/entities/factsage.md",
|
||||
"wiki/concepts/非金属夹杂物.md",
|
||||
"wiki/concepts/高熵合金纯净度控制.md",
|
||||
"wiki/concepts/夹杂物热力学动力学.md",
|
||||
"wiki/concepts/稀土改性.md",
|
||||
"wiki/concepts/点蚀机理.md",
|
||||
"wiki/concepts/坩埚 - 熔体反应.md"
|
||||
]
|
||||
},
|
||||
"激光熔覆制备高熵合金涂层及微观结构.pdf": {
|
||||
"hash": "6333a5112ebc4c78a03725693e5ef1af0a237c94ae2d00a37eb83a011284cee4",
|
||||
"timestamp": 1779605739194,
|
||||
"filesWritten": [
|
||||
"wiki/sources/激光熔覆制备高熵合金涂层及微观结构.md",
|
||||
"wiki/entities/卢迪.md",
|
||||
"wiki/entities/崔祥成.md",
|
||||
"wiki/entities/张文金.md",
|
||||
"wiki/entities/大连交通大学.md",
|
||||
"wiki/entities/广州航海学院.md",
|
||||
"wiki/entities/CrMnFeCoNi 高熵合金.md",
|
||||
"wiki/entities/45 钢.md",
|
||||
"wiki/entities/Zeiss-Ultra-55-SEM.md",
|
||||
"wiki/entities/MTS-E43-104.md",
|
||||
"wiki/entities/Scientific-Reports.md",
|
||||
"wiki/concepts/腐蚀电位.md",
|
||||
"wiki/concepts/钝化膜.md",
|
||||
"wiki/concepts/柱状晶.md",
|
||||
"wiki/concepts/热影响区.md",
|
||||
"wiki/concepts/同轴送粉.md",
|
||||
"wiki/concepts/激光熔覆高熵合金涂层.md"
|
||||
]
|
||||
},
|
||||
"面向极端服役条件的高熵合金结构材料:性能优势、瓶颈与突破路径_吕昭平.pdf": {
|
||||
"hash": "849557809f1231b47c03b5238e0ed490165a802a5d2e7820b6e8d4517ad2af8d",
|
||||
"timestamp": 1779606074993,
|
||||
"filesWritten": [
|
||||
"wiki/sources/面向极端服役条件的高熵合金结构材料:性能优势、瓶颈与突破路径_吕昭平.md",
|
||||
"wiki/entities/吕昭平.md",
|
||||
"wiki/entities/北京科技大学.md",
|
||||
"wiki/entities/新金属材料全国重点实验室.md",
|
||||
"wiki/entities/金属学报.md",
|
||||
"wiki/concepts/极端服役条件.md",
|
||||
"wiki/concepts/化学短程有序.md",
|
||||
"wiki/concepts/晶界工程.md",
|
||||
"wiki/concepts/扭折带.md",
|
||||
"wiki/concepts/缺陷阱.md",
|
||||
"wiki/index.md",
|
||||
"wiki/log.md"
|
||||
]
|
||||
},
|
||||
"纳米析出强化高熵合金的研究进展.pdf": {
|
||||
"hash": "adf0022b0b5ebd860b2d6a1c66fb76be2dd3c5f321286c9e42db16ddaab2cd87",
|
||||
"timestamp": 1779606374555,
|
||||
"filesWritten": [
|
||||
"wiki/sources/纳米析出强化高熵合金的研究进展.md",
|
||||
"wiki/entities/郭嘉鸣.md",
|
||||
"wiki/entities/焦增宝.md",
|
||||
"wiki/entities/倪冰雨.md",
|
||||
"wiki/entities/香港理工大学.md",
|
||||
"wiki/entities/中国材料进展.md",
|
||||
"wiki/entities/L12 相.md",
|
||||
"wiki/entities/B2 相.md",
|
||||
"wiki/entities/Laves 相.md",
|
||||
"wiki/entities/σ相.md",
|
||||
"wiki/concepts/纳米析出强化.md",
|
||||
"wiki/concepts/共格析出.md",
|
||||
"wiki/concepts/非共格析出.md",
|
||||
"wiki/concepts/复合析出.md",
|
||||
"wiki/concepts/位错切过机制.md"
|
||||
]
|
||||
},
|
||||
"随着晶粒细化 CoCrFeMnNi 高熵合金中孪晶行为的转变.pdf": {
|
||||
"hash": "717af3f82a520d424aa4c4e8add29d31b082001b675d05c9d023c216d6c9ff5c",
|
||||
"timestamp": 1779606692818,
|
||||
"filesWritten": [
|
||||
"wiki/sources/随着晶粒细化 CoCrFeMnNi 高熵合金中孪晶行为的转变.md",
|
||||
"wiki/entities/CoCrFeMnNi-高熵合金.md",
|
||||
"wiki/entities/中国科学院金属研究所.md",
|
||||
"wiki/concepts/变形孪晶.md",
|
||||
"wiki/concepts/层错能.md",
|
||||
"wiki/concepts/临界孪晶应力.md",
|
||||
"wiki/concepts/超细晶.md",
|
||||
"wiki/index.md",
|
||||
"wiki/log.md",
|
||||
"wiki/overview.md"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
[]
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
$5787a50a-9f34-4be9-b922-f6d0f094104fª page_id = 'ä¸´ç•Œåªæ™¶åº”力'
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
e$bdbbd5a0-9f4b-4f28-bb59-d5038e8fb6f8ª&$page_id = '高熵å<C2B5>ˆé‡‘应用领域'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
g$b6ee3ac3-3d1d-42c4-990d-5b8b4b1d5e65ª&$page_id = '高熵å<C2B5>ˆé‡‘粉末技术'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
i$89d0ccb5-d147-4cae-8a9b-f4c807f5db7cŞ)'page_id = 'é«<C3A9>熵ĺ<C2B5><C4BA>金纯净度控ĺ<C2A7>¶'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
k$feb59f35-33ef-434a-a48a-2ace586efb09ªpage_id = 'MTS-E43-104'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
m$91f2081c-27f8-440b-aab4-2e467e1969e9ªpage_id = 'Oleg-N-Senkov'
|
||||
|
|
@ -0,0 +1 @@
|
|||
$d2fb37ce-9ac0-473a-8d5b-79522c60055cŞpage_id = '剪ĺ<C59E>‡ĺŞć™¶'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
o$08aa95ac-fffb-43d8-9246-6f76671b5ba0ª page_id = 'Scientific-Reports'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
q$f7b77226-2427-4ef6-ab3b-7e816511899cª page_id = 'Zeiss-Ultra-55-SEM'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
s$93129e3d-dc5f-4c5d-b1fd-ff7f41bef207ªpage_id = 'cantor-å<>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
u$a7dec376-9aab-413c-90ef-316adb7f1c37ªpage_id = 'cocrfemnni-å<>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
w$553d23e3-e025-4eb2-9896-2bb8902c0251ª%#page_id = 'cocrfemnni-高熵å<C2B5>ˆé‡‘'
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
y$304d4143-7245-4e27-a7bd-e0cc021315eeªpage_id = 'cocrfeni-å<>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
{$196ce409-6174-4a0e-969b-660a33ea8facªpage_id = 'cocrni-å<>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
}$7aa4365e-d7ed-471d-8021-90fc134a2c89ªpage_id = 'factsage'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
$f02ba9bd-023d-47c6-a2ab-22d25a7007a1ª+)page_id = 'fe40mn20cr20ni20-高熵å<C2B5>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
<08>$5ab9ebb5-71bc-4841-b86b-e18eeb91874eªpage_id = 'park-joo-hyun'
|
||||
|
|
@ -0,0 +1 @@
|
|||
$0a75b351-60be-4425-ad89-a118e2bdd040ª page_id = '化å¦çŸç¨‹æœ‰åº<C3A5>'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
ƒ$e462a67b-b329-4cb1-a3d9-1112b6a98e6bª%#page_id = 'tinbcrcoal-ä¼ ç»Ÿå<C5B8>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
…$a0360925-1b2d-4d9d-8df4-8bbd902f8930ª%#page_id = 'tivnbrcral-高熵å<C2B5>ˆé‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
‡$f68b99a8-32ad-4c78-983c-10e533bb6ae4ªpage_id = 'σ相'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
‰$87e91072-a7eb-438c-9f0f-d3cb85e6ef3bª page_id = 'ä¸å›½æ<C2BD><C3A6>料进展'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
‹$6d2f4fb9-6e55-4907-a365-55adfa735c04ª,*page_id = 'ä¸å›½ç§‘å¦é™¢é‡‘å±žç ”ç©¶æ‰€'
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
<08>$ebb4d11d-2b1c-4e3e-adde-883a1dccd615ªpage_id = '倪冰雨'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
<08>$4f0f0ba7-0fe3-41e3-b9e7-999f1bf9568cª page_id = '北京科技大å¦'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
‘$eb45c789-47ba-4601-a1fc-8f1468bbe182ª page_id = '北方工业大å¦'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
“$084648bd-05bb-4627-9dc9-bc779a488de4ªpage_id = 'å<>¢è¿ª'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
•$8a57c777-1d9d-42c6-8931-247c4d4d0daaª&$page_id = '原å<C3A5>探针æ–层扫æ<C2AB><C3A6>'
|
||||
|
|
@ -0,0 +1 @@
|
|||
$50b9e5e0-c46b-474d-8d12-7896fa1d33b2ªpage_id = 'å<>˜å½¢åªæ™¶'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
—$12b2f0c4-fc4a-46a4-94e4-2e4dca3039b3ªpage_id = 'å<>•æ˜å¹³'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
™$755e1f63-33dc-42bd-ae6e-65a98dd5a850ª page_id = '大连交通大å¦'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
›$9793dc91-6fab-4e72-a8a8-83e1d84d527bªpage_id = '宫书林'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
<08>$cc1ae401-fa12-4e82-a5ee-40dd6e70af2aªpage_id = '崔祥æˆ<C3A6>'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
Ÿ$ab33fe48-865e-4566-90d0-845d95ba2146ª page_id = '工程科å¦å¦æŠ¥'
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
¡$0d18a41b-17dc-4e76-bc7b-d598f2f3b029ª page_id = '广州航海å¦é™¢'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
£$9278d1ed-7c83-4555-a25b-58719a59f88cªpage_id = 'å¼ æ–‡é‡‘'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
¥$007c3885-4a1f-4617-98f0-5afbf560ebffªpage_id = 'å¼ ç«‹å³°'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
§$674d190d-0353-442a-b115-c8d1f92e9ee9ª20page_id = '新金属æ<C5BE><C3A6>料全国é‡<C3A9>点实验室'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
©$3dbc062c-f6b3-490d-b0e5-0ba44afbb13fªpage_id = '段生æœ<C3A6>'
|
||||
|
|
@ -0,0 +1 @@
|
|||
$b81ccfe1-4289-476f-a557-ab87f984a6c2ªpage_id = 'å<>Œè½´é€<C3A9>粉'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
«$1144ac92-287a-4f59-a240-9879cc44fc44ª page_id = '激光熔化沉积'
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
$14802339-9a6f-4742-9a51-827dab87a686ªpage_id = '焦增å®<C3A5>'
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue