用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/MikeTreml/MissionControl --skill test-correlation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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"]} |
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":