一键导入
qaqc
Run model quality checks before simulation. Use when user asks to "check the model", "validate", "QA/QC", or before running a simulation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run model quality checks before simulation. Use when user asks to "check the model", "validate", "QA/QC", or before running a simulation.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add custom EMS control or reporting logic (EnergyPlus Python Plugins) — setpoint resets, schedule overrides, supervisory control, custom metrics. Use when no packaged HVAC/schedule tool covers the control logic the user wants.
OpenStudio Analysis Framework (OSAF) workflows, algorithm selection, validation, submission, and result download. Use when the user asks about OSAF, OpenStudio Server analyses, sampling, sweeps, optimization, calibration, or OSA JSON configs.
Create, test, and apply custom OpenStudio measures. Use when user asks to "write a measure", "create a custom measure", "modify the model with Ruby/Python code", or needs logic beyond what existing tools provide.
Generate comprehensive energy analysis report from simulation results. Use when user asks for "energy report", "full results", or "detailed analysis".
OpenStudio model object relationships, tool dependencies, and common error patterns. Use when building or modifying models to ensure correct tool ordering.
Create a complete building model from scratch — geometry, envelope, loads, HVAC, weather, and simulation. Use when user wants to "create a building", "build a model", or "start a new model".
| name | qaqc |
| description | Run model quality checks before simulation. Use when user asks to "check the model", "validate", "QA/QC", or before running a simulation. |
Inspect the current model for common issues before running a simulation.
Quick automated check:
validate_model()
Checks weather, design days, HVAC, constructions in one call.
Get model overview:
get_model_summary()
get_building_info()
Check for missing critical elements:
list_thermal_zones() — look for zones with no equipmentlist_spaces() — look for spaces not assigned to a thermal zonelist_surfaces() — look for surfaces without constructionsget_weather_info() — check if EPW is attachedget_run_period() — check if simulation dates are setRun ASHRAE QA/QC checks (if model has been simulated):
run_qaqc_checks(template="90.1-2019")
Report findings organized by severity:
Errors (will cause simulation failure):
Warnings (may produce bad results):
Info (notable but not problems):
Suggest fixes for each issue found, referencing specific tools.