用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/a5c-ai/babysitter --skill test-correlation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Reference for querying the Atlas knowledge graph through its MCP tools — the SECONDARY enrichment/comparison layer that adds best-practice context to systems you have ALREADY scanned from your real sources (`az`, repos, dirs). Use when you need to look up nodes, edges, kinds, clusters, stats, or wiki pages in Atlas to compare against your real inventory. (atlas graph, query atlas, atlas mcp, search the graph, graph neighbors, atlas record, atlas kinds, enrichment layer)
Atlas turns your STATED NEED into a real systems atlas by SCANNING your actual sources (Azure via `az`, git repos, local dirs) and process/data mining them, THEN enriching against the Atlas knowledge graph. Use this skill when asked to inventory/map your real systems, scan your cloud + repos + directories, mine the real processes or data they contain, or collect their real constraints/gotchas. (atlas, scan my systems, inventory our azure account, map my repos, real systems atlas, process mining, data mining, collect nuances, system discovery)
This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable processes, babysitter plugins, and reusable procedural insights. Searches GitHub for SKILL.md files, classifies repos by archetype, and maintains structured research under docs/reference-repos/.
正在显示 SKILL.md
基于 SOC 职业分类
| name | test-correlation |
| description | Skill for correlating test results with analytical predictions and model validation |
| allowed-tools | ["Read","Write","Glob","Grep","Bash"] |
| metadata | {"specialization":"mechanical-engineering","domain":"science","category":"testing-validation","priority":"high","phase":4,"tools-libraries":["MATLAB","Python scipy","Test data formats","FEA/CFD tools"]} |
| graph | {"domains":["domain:mechanical-engineering"],"skillAreas":["skill-area:physics-simulation","skill-area:mathematical-reasoning","skill-area:motion-planning"],"roles":["role:systems-integration-engineer","role:research-engineer"]} |
The Test Correlation skill provides capabilities for correlating test results with analytical predictions, enabling model validation, calibration, and uncertainty quantification for mechanical systems.
Test Data Preparation
Data quality checks:
- Missing data handling
- Outlier detection
- Noise filtering
- Time synchronization
- Unit verification
Signal Processing
| Operation | Purpose | Method |
|---|---|---|
| Low-pass filter | Remove noise | Butterworth |
| Resampling | Match analysis | Interpolation |
| Baseline correction | Remove offset | Linear/polynomial |
| Windowing | FFT preparation | Hanning, Hamming |
Derived Quantities
Analysis Results
Interpolation
For locations between nodes:
- Shape function interpolation
- Nearest node approximation
- Surface interpolation (for contours)
Percent difference:
%diff = (Test - Analysis) / Test * 100
For near-zero values:
%diff = (Test - Analysis) / max(|Test|, |Analysis|) * 100
Absolute difference:
delta = Test - Analysis
| Metric | Formula | Purpose |
|---|---|---|
| Mean error | mean(Test - Analysis) | Bias detection |
| RMS error | sqrt(mean((Test-Analysis)^2)) | Overall accuracy |
| Correlation coefficient | r | Linear relationship |
| R-squared | r^2 | Variance explained |
Frequency Comparison
Frequency error:
%error = (f_test - f_analysis) / f_test * 100
Typical acceptance: +/- 5-10%
Mode Shape Correlation
MAC (Modal Assurance Criterion):
MAC = |{phi_test}^T {phi_analysis}|^2 /
({phi_test}^T{phi_test})({phi_analysis}^T{phi_analysis})
MAC = 1: Perfect correlation
MAC > 0.9: Good correlation
MAC > 0.7: Acceptable correlation
Cross-Orthogonality
XOR = {phi_test}^T [M] {phi_analysis}
XOR_ii > 0.9: Good correlation
XOR_ij < 0.1: Mode independence
Sensitivity Analysis
Optimization Methods
| Method | Application | Pros/Cons |
|---|---|---|
| Manual iteration | Simple cases | Intuitive, slow |
| Gradient-based | Smooth response | Fast, local minimum |
| Genetic algorithm | Complex response | Global, slow |
| Response surface | Multiple cases | Efficient, approximation |
| Parameter | Structural | Thermal | CFD |
|---|---|---|---|
| Stiffness | Young's modulus | Conductivity | - |
| Boundary | Joint stiffness | HTC | Inlet profile |
| Damping | Modal damping | - | Turbulence |
| Mass | Density | Cp | Density |
| Geometry | Thickness | Contact area | Mesh |
Typical validation targets:
- Displacement: +/- 10%
- Stress: +/- 15%
- Natural frequency: +/- 5%
- MAC: > 0.9
- Temperature: +/- 5 degrees
- Pressure: +/- 10%
| Level | Evidence | Application |
|---|---|---|
| 1 | Qualitative trends match | Preliminary design |
| 2 | Quantitative agreement | Detailed design |
| 3 | Statistical validation | Certification |
| 4 | Prediction capability | Production release |
Test Uncertainty
Model Uncertainty
u_combined = sqrt(u_test^2 + u_model^2)
Overlap criteria:
If |Test - Analysis| < 2 * u_combined:
Results are statistically consistent
{
"test_data": {
"file_path": "string",
"format": "csv|mat|hdf5",
"channels": "array of channel IDs"
},
"analysis_results": {
"file_path": "string",
"software": "ANSYS|NASTRAN|Abaqus|other",
"output_locations": "array"
},
"comparison_type": "static|modal|transient|steady_state",
"correlation_requirements": {
"metrics": "array",
"acceptance_criteria": "object"
}
}
{
"correlation_results": {
"comparison_table": "array of point comparisons",
"statistical_metrics": {
"mean_error": "number",
"rms_error": "number",
"max_error": "number",
"correlation_coefficient": "number"
},
"modal_metrics": {
"frequency_errors": "array",
"mac_matrix": "2D array"
}
},
"validation_status": {
"overall": "pass|fail|conditional",
"by_criterion": "array"
},
"calibration_recommendations":