Modeling & Simulation Troubleshooting¶
Missing Weather File Error¶
Symptom¶
run_simulation returns weather-related error.
Fix¶
- Call
download_weather_file(query=...)first, or - pass explicit
weather_filepath.
Validation Fails Repeatedly¶
Strategy¶
- Run
validate_model(object_types=[...])to narrow scope. - Call
describe_object_typefor failing types. - Repair fields using
update_object. - Re-run validation.
Dangling References¶
Symptom¶
validate_model(check_references=true) reports dangling references.
Fix pattern¶
- Inspect each entry's
source_type,field, andmissing_target. - Use
get_available_referencesfor that field. - Update to valid target names.
Object Removal Is Blocked¶
Symptom¶
remove_object returns "Object is referenced by other objects".
Fix options¶
- Preferred: rewire references first.
- Last resort:
force=true.
No Output Variables Found¶
Symptom¶
list_output_variables returns missing index error.
Causes¶
- simulation failed early
- output metadata files were not produced
Fix¶
- Inspect the
idfkit://simulation/resultsresource errors first. - correct model issues and rerun simulation.