Token导航 LogoToken导航TokenDH.com
研究检索只读clawhub未标认证来源可访问clear审计通过

afm-secm-correlation-tools-1-0-0afm secm 相关工具 1 0 0

Agent Skill

afm-secm-correlation-tools-1-0-0 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,328

周安装

98

GitHub Stars

公开资料未说明

下载量

815
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:afm-secm-correlation-tools-1-0-0(afm secm 相关工具 1 0 0)
来源仓库:https://github.com/xrayxiaoruiyang-pixel/afm-secm-correlation-tools-1-0-0
安装命令:
openclaw skills install afm-secm-correlation-tools-1-0-0
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install afm-secm-correlation-tools-1-0-0

简介

分析并关联 AFM 形貌和 SECM 活性数据,以确定电催化研究中的微观结构-活性关系。

SKILL.md

afm-secm-correlation-tools-1.0.0

AFM topography + SECM electrochemical activity correlation analyzer for electrocatalysis research.

Overview

Combines atomic force microscopy (AFM) surface morphology data with scanning electrochemical microscopy (SECM) activity maps to reveal structure–activity relationships at the microscale. Identifies whether high electrochemical activity hotspots correspond to topographic features (particles, edges, grain boundaries) or are driven by chemical/electronic factors alone.

Capabilities

1. Data Import

  • AFM: SPI (.spm), JPK (.jpk Force Map), NT-MDT (.md), Asylum MFP-3D (.txt/.csv), Bruker (.ps), generic CSV (X/Y/Height/Z)
  • SECM: CSV grid (X/Y/current), ASCII raster, CH Instruments, BioLogic, JPK, custom formats
  • Auto-detects scan size, resolution, units (nm/μm/Å)

2. Image Preprocessing

  • Leveling (1st/2nd order plane fit), flatten rows/columns
  • Gaussian low-pass filter (remove high-frequency noise)
  • Sharpen (Laplacian kernel) for edge enhancement
  • Remove bow/tilt artifacts

3. Morphology Feature Extraction

  • Roughness parameters: Ra (arithmetic), Rq (RMS), Rz (ten-point height), Rmax
  • Grain segmentation (watershed algorithm), grain size distribution (mean Feret diameter)
  • Particle detection: height threshold → equivalent circle diameter, aspect ratio, circularity
  • Edge/boundary density: detected as high-gradient zones (∇z threshold)
  • Bearing ratio and surface area ratio (complexity factor)

4. SECM Activity Map Processing

  • Background subtraction (median filter), IQR outlier removal
  • Normalization: min-max / z-score / relative to macroelectrode reference
  • Hotspot detection: top 5–10% pixels (configurable threshold)
  • Cross-section profile extraction (horizontal/vertical cuts)

5. AFM–SECM Co-registration & Correlation

  • Spatial overlay: AFM topography heatmap + SECM activity contour, shared colorbar
  • Scatter plot: local roughness (Ra in 8×8 windows) vs local SECM current, Pearson/Spearman r
  • Topographic masking: correlation computed only where AFM height > grain boundary threshold
  • Hotspot mapping: overlay AFM-detected particles with SECM hotspots → particle-activity contingency table
  • Dual-Y time-series: tip position along cross-section vs height and current simultaneously
  • Correlation coefficient classification: r < 0.3 (uncorrelated), 0.3–0.6 (moderate), > 0.6 (strong)

6. Reference Databases

  • Built-in AFM tips: OLTEP (Au 111), PPP- kont AFMSPA (Si), SNL-10 (soft),q
  • Built-in SECM tips: Pt ultramicroelectrode (10 μm), carbon fiber (10 μm), Au nanoelectrode (1 μm)
  • Reaction type references: OER_NiOOH, HER_Pt, ORR_Au, CO2RR_Cu, Fe(CN)6³⁻/⁴⁻
  • AFM roughness thresholds: Ra < 1 nm (ultrasmooth), 1–5 nm (smooth), 5–20 nm (rough), > 20 nm (very rough)

7. Output

  • PNG 6-panel correlation dashboard (AFM / SECM / overlay / scatter / profile / statistics)
  • Topographic feature table: grain size, particle density, edge density, activity
  • Correlation summary CSV: r_Pearson, r_Spearman, p-value, N_windows
  • Markdown full report with figure captions

Usage

# Full analysis with AFM + SECM files
python afm_secm_correlation.py \
  --afm scan_afm.spm \
  --secm secm_map.csv \
  --output output_afm_secm/ \
  --afm-height-unit nm \
  --secm-current-unit nA \
  --secm-tip-diameter 10 \
  --reaction-type OER_NiOOH

# Quick correlation scatter plot only
python afm_secm_correlation.py \
  --afm scan_afm.spm \
  --secm secm_map.csv \
  --mode scatter \
  --output quick_corr/

# Grid correlation (8x8 windows)
python afm_secm_correlation.py \
  --afm scan_afm.spm \
  --secm secm_map.csv \
  --mode grid-corr \
  --window-size 8 \
  --output grid_corr/

File Formats

InstrumentAFM FormatSECM Format
Asylum MFP-3D.ibw, .txtCSV grid
JPK Instruments.jpkCSV grid
Bruker / Veeco.spm, .000ASCII
NT-MDT.md, .msrCSV
CH Instruments.jdx
BioLogic.mpt
GenericCSV (X/Y/Z)CSV (X/Y/I)

Dependencies

  • numpy, scipy, matplotlib, pandas, scikit-image, lmfit, opencv-python (cv2)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

72.65%
按下载量换算592

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills