원클릭으로
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.