API 参考 - 主程序仿真入口 (Simulation)¶
主程序仿真入口 (Simulation)
主程序仿真入口 (Simulation) 包含了 TRICYS 的主要执行脚本,负责启动标准仿真和分析工作流。 请在下方的标签页中选择您感兴趣的特定模块。
export_results_to_csv(results_dir, hdf_path)
¶
Exports results from HDF5 to legacy CSV formats.
Source code in tricys/simulation/simulation.py
758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 | |
main(config_or_path, base_dir=None, export_csv=False)
¶
Main entry point for the simulation runner.
This function prepares the configuration, sets up logging, and invokes
the main run_simulation orchestrator.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_or_path
|
Union[str, Dict[str, Any]]
|
The path to the JSON configuration file OR a config dict. |
required |
base_dir
|
str
|
Optional base directory for resolving relative paths if a dict is passed. |
None
|
export_csv
|
bool
|
Whether to export results to CSV after HDF5 storage. |
False
|
Source code in tricys/simulation/simulation.py
run_co_simulation_job(config, job_params, job_id=0)
¶
Runs the full co-simulation workflow in an isolated directory.
This function sets up a self-contained workspace for a single co-simulation job to ensure thread safety. It copies the model package, handles asset files, generates an interceptor model, and executes a two-stage simulation: first to get primary inputs, and second to run the final simulation with the intercepted model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict
|
The main configuration dictionary. |
required |
job_params
|
dict
|
A dictionary of parameters specific to this job. |
required |
job_id
|
int
|
A unique identifier for the job, used for workspace naming. Defaults to 0. |
0
|
Returns:
| Type | Description |
|---|---|
str
|
The path to the final simulation result file, or an empty string if the simulation failed. |
Note
Creates isolated workspace in temp_dir/job_{job_id}. Supports both single-file and multi-file Modelica packages. Handles external interceptor handlers. Cleans up workspace after completion. Two-stage simulation: stage 1 generates input CSV, stage 2 runs with interceptor model.
Source code in tricys/simulation/simulation.py
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 | |
run_post_processing(config, results_df, post_processing_output_dir, results_file_path=None)
¶
Dynamically loads and runs post-processing modules.
This function iterates through the post-processing tasks defined in the configuration. For each task, it dynamically loads the specified module (from a module name or a script path) and executes the target function, passing the HDF5 results path and other parameters to it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Dict[str, Any]
|
The main configuration dictionary. |
required |
results_df
|
DataFrame
|
Deprecated legacy argument retained for call compatibility. |
required |
post_processing_output_dir
|
str
|
The directory to save any output from the tasks. |
required |
results_file_path
|
str
|
Path to the HDF5 results file. |
None
|
Note
Supports two loading methods: 'script_path' for direct .py files, or 'module' for installed packages. Creates output_dir if it doesn't exist. Passes results_file_path, output_dir, and user-specified params to each task function. Logs errors for failed tasks but continues with remaining tasks.
Source code in tricys/simulation/simulation.py
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 | |
run_sequential_sweep(config, jobs, post_job_callback=None, filter_schema=None)
¶
Executes a parameter sweep sequentially.
This function runs a series of simulation jobs one after another, reusing the same OpenModelica session for efficiency. Intermediate results for each job are saved to a dedicated job workspace.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict
|
The main configuration dictionary. |
required |
jobs
|
List[Dict[str, Any]]
|
A list of job parameter dictionaries to execute. |
required |
Returns:
| Type | Description |
|---|---|
List[str]
|
A list of paths to the result files for each job. Failed jobs will have |
List[str]
|
an empty string as their path. |
Note
Reuses single OMPython session for all jobs. Cleans result files by removing duplicate/NaN time values. Cleans up workspaces unless keep_temp_files is True. More efficient than parallel mode for small job counts.
Source code in tricys/simulation/simulation.py
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 | |
run_simulation(config, export_csv=False)
¶
Orchestrates the main simulation workflow.
Simplified Mode Logic (Unified HDF5 Storage): 1. Concurrent Mode (concurrent=True): - Uses "Enhanced" execution (Compile Once, Run Many). - Streams results directly to HDF5.
- Sequential Mode (concurrent=False):
- Uses "Standard" execution (Reuse OMPython Session).
- Also streams results directly to HDF5.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Dict[str, Any]
|
The main configuration dictionary for the run. |
required |
export_csv
|
bool
|
Whether to export results to CSV files at the end. |
False
|
Source code in tricys/simulation/simulation.py
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 | |
main(config_or_path, base_dir=None)
¶
Main entry point for a simulation analysis run.
This function prepares the configuration for an analysis run, sets up
logging, and calls the main run_simulation orchestrator for analysis.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config_or_path
|
Union[str, Dict[str, Any]]
|
The path to the JSON configuration file OR a config dict. |
required |
base_dir
|
str
|
Optional base directory for resolving relative paths. |
None
|
Source code in tricys/simulation/simulation_analysis.py
retry_analysis(timestamp)
¶
Retries a failed AI analysis for a given run timestamp.
This function restores the configuration from the log file of a previous run and re-triggers the AI-dependent parts of the analysis, including report generation and consolidation.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
timestamp
|
str
|
The timestamp of the run to retry (e.g., "20230101_120000"). |
required |
Source code in tricys/simulation/simulation_analysis.py
run_simulation(config)
¶
Orchestrates the simulation analysis workflow (Default: Enhanced Mode).
Source code in tricys/simulation/simulation_analysis.py
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 | |