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. |
Source code in src/idfkit/simulation/result.py
27 28 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 | |
run_dir
instance-attribute
¶
success
instance-attribute
¶
exit_code
instance-attribute
¶
stdout
instance-attribute
¶
stderr
instance-attribute
¶
runtime_seconds
instance-attribute
¶
output_prefix = 'eplus'
class-attribute
instance-attribute
¶
fs = field(default=None, repr=False)
class-attribute
instance-attribute
¶
async_fs = field(default=None, repr=False)
class-attribute
instance-attribute
¶
errors
property
¶
Parsed error report from the .err file (lazily cached).
Returns:
| Type | Description |
|---|---|
ErrorReport
|
Parsed ErrorReport from the simulation's .err output. |
sql
property
¶
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. |
csv
property
¶
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. |
sql_path
property
¶
Path to the SQLite output file, if present.
err_path
property
¶
Path to the .err output file, if present.
eso_path
property
¶
Path to the .eso output file, if present.
csv_path
property
¶
Path to the .csv output file, if present.
html_path
property
¶
Path to the HTML tabular output file, if present.
rdd_path
property
¶
Path to the .rdd output file, if present.
mdd_path
property
¶
Path to the .mdd output file, if present.
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 src/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 src/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 | |
fatal
instance-attribute
¶
severe
instance-attribute
¶
warnings
instance-attribute
¶
fatal_count
property
¶
Number of fatal errors.
severe_count
property
¶
Number of severe errors.
warning_count
property
¶
Total number of warnings.
has_fatal
property
¶
Whether any fatal errors were found.
has_severe
property
¶
Whether any severe errors were found.
summary()
¶
Return a human-readable summary of the error report.
Returns:
| Type | Description |
|---|---|
str
|
A multi-line summary string. |
Source code in src/idfkit/simulation/parsers/err.py
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 src/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. |
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 src/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 src/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 src/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 src/idfkit/simulation/parsers/html.py
titletable()
¶
Return (title, rows) pairs like eppy's readhtml.titletable.
Each entry is (bold_title, [header_row, *data_rows]).
Source code in src/idfkit/simulation/parsers/html.py
tablebyname(name)
¶
Find first table whose title contains name (case-insensitive).
tablebyindex(index)
¶
tablesbyreport(report_name)
¶
Get all tables belonging to a specific report.
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 src/idfkit/simulation/parsers/html.py
title
instance-attribute
¶
header
instance-attribute
¶
rows
instance-attribute
¶
report_name = ''
class-attribute
instance-attribute
¶
for_string = ''
class-attribute
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.