Results API¶
Simulation result container and output file access.
SimulationResult¶
idfkit.simulation.result.SimulationResult
dataclass
¶
Result of an EnergyPlus simulation run.
Attributes:
| Name | Type | Description |
|---|---|---|
run_dir |
Path
|
Directory containing all simulation output. |
success |
bool
|
Whether the simulation exited successfully. |
exit_code |
int | None
|
Process exit code (None if timed out). |
stdout |
str
|
Captured standard output. |
stderr |
str
|
Captured standard error. |
runtime_seconds |
float
|
Wall-clock execution time in seconds. |
output_prefix |
str
|
Output file prefix (default "eplus"). |
fs |
FileSystem | None
|
Optional sync file system backend for reading output files. |
async_fs |
AsyncFileSystem | None
|
Optional async file system backend for non-blocking reads. Set automatically by async_simulate when an AsyncFileSystem is provided. |
migration_report |
MigrationReport | None
|
Populated when |
Source code in idfkit/simulation/result.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 | |
async_fs = field(default=None, repr=False)
class-attribute
instance-attribute
¶
csv
property
¶
csv_path
property
¶
Path to the .csv output file, if present.
err_path
property
¶
Path to the .err output file, if present.
errors
property
¶
Parsed error report from the .err file (lazily cached).
Returns:
| Type | Description |
|---|---|
ErrorReport
|
Parsed ErrorReport from the simulation's .err output. |
eso
property
¶
eso_path
property
¶
Path to the .eso output file, if present.
exit_code
instance-attribute
¶
fs = field(default=None, repr=False)
class-attribute
instance-attribute
¶
html
property
¶
Parsed HTML tabular output (lazily cached).
Returns:
| Type | Description |
|---|---|
HTMLResult | None
|
An HTMLResult with extracted tables and titles, |
HTMLResult | None
|
or None if no HTML file was produced. |
html_path
property
¶
Path to the HTML tabular output file, if present.
mdd_path
property
¶
Path to the .mdd output file, if present.
migration_report = field(default=None, repr=False)
class-attribute
instance-attribute
¶
mtr
property
¶
mtr_path
property
¶
Path to the .mtr meter output file, if present.
output_prefix = 'eplus'
class-attribute
instance-attribute
¶
rdd_path
property
¶
Path to the .rdd output file, if present.
run_dir
instance-attribute
¶
runtime_seconds
instance-attribute
¶
sql
property
¶
sql_path
property
¶
Path to the SQLite output file, if present.
stderr
instance-attribute
¶
stdout
instance-attribute
¶
success
instance-attribute
¶
variables
property
¶
Output variable/meter index from .rdd/.mdd files (lazily cached).
Returns:
| Type | Description |
|---|---|
OutputVariableIndex | None
|
An OutputVariableIndex for searching and injecting output |
OutputVariableIndex | None
|
variables, or None if no .rdd file was produced. |
async_csv()
async
¶
Parsed CSV output (async, lazily cached).
Non-blocking counterpart to csv that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
CSVResult | None
|
A CSVResult with extracted column metadata and values, |
CSVResult | None
|
or None if no .csv file was produced. |
Source code in idfkit/simulation/result.py
async_errors()
async
¶
Parsed error report from the .err file (async, lazily cached).
Non-blocking counterpart to errors that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
ErrorReport
|
Parsed ErrorReport from the simulation's .err output. |
Source code in idfkit/simulation/result.py
async_eso()
async
¶
Parsed ESO time-series output (async, lazily cached).
Non-blocking counterpart to eso that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
ESOResult | None
|
An ESOResult, or None if no .eso file was produced. |
Source code in idfkit/simulation/result.py
async_html()
async
¶
Parsed HTML tabular output (async, lazily cached).
Non-blocking counterpart to html that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
HTMLResult | None
|
An HTMLResult with extracted tables and titles, |
HTMLResult | None
|
or None if no HTML file was produced. |
Source code in idfkit/simulation/result.py
async_mtr()
async
¶
Parsed MTR meter time-series output (async, lazily cached).
Non-blocking counterpart to mtr that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
ESOResult | None
|
An ESOResult, or None if no .mtr file was produced. |
Source code in idfkit/simulation/result.py
async_sql()
async
¶
Parsed SQL output database (async, lazily cached).
Non-blocking counterpart to sql that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
SQLResult | None
|
An SQLResult for querying time-series and tabular data, |
SQLResult | None
|
or None if no .sql file was produced. |
Source code in idfkit/simulation/result.py
async_variables()
async
¶
Output variable/meter index (async, lazily cached).
Non-blocking counterpart to variables that uses async_fs for file reads.
Returns:
| Type | Description |
|---|---|
OutputVariableIndex | None
|
An OutputVariableIndex for searching and injecting output |
OutputVariableIndex | None
|
variables, or None if no .rdd file was produced. |
Source code in idfkit/simulation/result.py
close()
¶
Release any open file handles held by cached parsers.
Closes the SQLite connection opened lazily by sql / async_sql (and removes the temporary copy made for remote file systems). The other parsers read their files eagerly and hold no handles, so this is currently a no-op for them.
Call this — or use the result as a context manager — before deleting
the run directory. On Windows an open SQLite connection locks
eplus.sql and blocks shutil.rmtree / TemporaryDirectory
cleanup with PermissionError [WinError 32]. Safe to call more
than once; the cached connection is reopened on next access if needed.
Source code in idfkit/simulation/result.py
from_directory(path, *, output_prefix='eplus', fs=None, async_fs=None)
classmethod
¶
Reconstruct a SimulationResult from an existing output directory.
Useful for inspecting results from a previous simulation run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the simulation output directory. |
required |
output_prefix
|
str
|
Output file prefix used during the run. |
'eplus'
|
fs
|
FileSystem | None
|
Optional sync file system backend for reading output files. |
None
|
async_fs
|
AsyncFileSystem | None
|
Optional async file system backend for non-blocking reads. |
None
|
Returns:
| Type | Description |
|---|---|
SimulationResult
|
SimulationResult pointing to the existing output. |
Source code in idfkit/simulation/result.py
ErrorReport¶
idfkit.simulation.parsers.err.ErrorReport
dataclass
¶
Parsed contents of an EnergyPlus .err file.
Attributes:
| Name | Type | Description |
|---|---|---|
fatal |
tuple[ErrorMessage, ...]
|
Fatal error messages. |
severe |
tuple[ErrorMessage, ...]
|
Severe error messages. |
warnings |
tuple[ErrorMessage, ...]
|
Warning messages. |
info |
tuple[ErrorMessage, ...]
|
Informational messages. |
warmup_converged |
bool
|
Whether warmup convergence was reported. |
simulation_complete |
bool
|
Whether the simulation completed successfully. |
raw_text |
str
|
The original unparsed file text. |
Source code in idfkit/simulation/parsers/err.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
error_count
property
¶
Total number of fatal + severe errors.
fatal
instance-attribute
¶
fatal_count
property
¶
Number of fatal errors.
has_fatal
property
¶
Whether any fatal errors were found.
has_severe
property
¶
Whether any severe errors were found.
info
instance-attribute
¶
raw_text
instance-attribute
¶
severe
instance-attribute
¶
severe_count
property
¶
Number of severe errors.
simulation_complete
instance-attribute
¶
warmup_converged
instance-attribute
¶
warning_count
property
¶
Total number of warnings.
warnings
instance-attribute
¶
from_file(path)
classmethod
¶
Parse an .err file from disk.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str | Path
|
Path to the .err file. |
required |
Returns:
| Type | Description |
|---|---|
ErrorReport
|
Parsed ErrorReport. |
Source code in idfkit/simulation/parsers/err.py
from_string(text)
classmethod
¶
Parse .err content from a string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
text
|
str
|
Raw .err file contents. |
required |
Returns:
| Type | Description |
|---|---|
ErrorReport
|
Parsed ErrorReport. |
summary()
¶
Return a human-readable summary of the error report.
Returns:
| Type | Description |
|---|---|
str
|
A multi-line summary string. |
Source code in idfkit/simulation/parsers/err.py
ErrorMessage¶
idfkit.simulation.parsers.err.ErrorMessage
dataclass
¶
A single error/warning message from EnergyPlus.
Attributes:
| Name | Type | Description |
|---|---|---|
severity |
str
|
One of "Fatal", "Severe", "Warning", "Info". |
message |
str
|
The primary message text. |
details |
tuple[str, ...]
|
Additional continuation lines ( |
Source code in idfkit/simulation/parsers/err.py
HTMLResult¶
idfkit.simulation.parsers.html.HTMLResult
dataclass
¶
Parsed HTML tabular output from an EnergyPlus simulation.
Attributes:
| Name | Type | Description |
|---|---|---|
tables |
list[HTMLTable]
|
All tables extracted from the file, in document order. |
Source code in idfkit/simulation/parsers/html.py
tables = field(default_factory=lambda: [])
class-attribute
instance-attribute
¶
from_file(path, encoding='latin-1')
classmethod
¶
Parse an EnergyPlus HTML output file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
Path | str
|
Path to the HTML file (typically |
required |
encoding
|
str
|
File encoding (default |
'latin-1'
|
Returns:
| Type | Description |
|---|---|
HTMLResult
|
Parsed HTMLResult. |
Source code in idfkit/simulation/parsers/html.py
from_string(html)
classmethod
¶
Parse an HTML string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
html
|
str
|
The raw HTML content. |
required |
Returns:
| Type | Description |
|---|---|
HTMLResult
|
Parsed HTMLResult. |
Source code in idfkit/simulation/parsers/html.py
tablebyindex(index)
¶
tablebyname(name)
¶
Find first table whose title contains name (case-insensitive).
tablesbyreport(report_name)
¶
Get all tables belonging to a specific report.
titletable()
¶
Return (title, rows) pairs like eppy's readhtml.titletable.
Each entry is (bold_title, [header_row, *data_rows]).
Source code in idfkit/simulation/parsers/html.py
HTMLTable¶
idfkit.simulation.parsers.html.HTMLTable
dataclass
¶
A single table extracted from the EnergyPlus HTML output.
Attributes:
| Name | Type | Description |
|---|---|---|
title |
str
|
The bold title preceding the table (e.g.
|
header |
list[str]
|
Column headers (first |
rows |
list[list[str]]
|
Data rows as lists of strings. |
report_name |
str
|
The top-level report name (e.g.
|
for_string |
str
|
The |
Source code in idfkit/simulation/parsers/html.py
for_string = ''
class-attribute
instance-attribute
¶
header
instance-attribute
¶
report_name = ''
class-attribute
instance-attribute
¶
rows
instance-attribute
¶
title
instance-attribute
¶
to_dict()
¶
Convert to a dict mapping row headers to {col_header: value}.
The first column is treated as the row key. Remaining columns are keyed by their respective column headers (starting at index 1). Duplicate row keys are silently overwritten by the last occurrence.
This gives convenient dict-style access similar to eppy's
readhtml.named_grid_h.