-
Notifications
You must be signed in to change notification settings - Fork 27
Description
It appears that the Enhanced result export features page is no longer valid? It starts with:
Enhanced result export features
PyDSS provides users with high level options to export results and variables of interest. Within the Scenario_settings.TOML file there are four settings users are able to change
"Log Results" = true
"Return Results" = false
"Export Mode" = "byClass"
"Export Style" = "Single file"
For example, searching the code for instances of "Export Mode" brings up a lot of toml files, but the ExportsModel class removes the "Export Mode" before parsing:
PyDSS/PyDSS/simulation_input_models.py
Lines 386 to 389 in 127d531
| def pre_process(cls, values): | |
| values.pop("Return Results", None) | |
| values.pop("Export Mode", None) | |
| values.pop("Export Style", None) |
Also, I think that the "Scenario_settings.TOML file" is now the "simulation.toml" located in the top directory of a "project"?