ESA icon indicating copy to clipboard operation
ESA copied to clipboard

Easy SimAuto (ESA): An easy-to-use Power System Analysis Automation Environment atop PowerWorld Simulator Automation Server (SimAuto)

Results 15 ESA issues
Sort by recently updated
recently updated
newest added

1. Reduce the number of conditions by using formatted string e.g. ```python if target == 'MW': flow = gen.loc[i, 'GenMW'] ``` can be optimized into ```python flow = gen.loc[i, f"Gen{target}"]...

enhancement
good first issue

This would allow faster reading of case data when the same case is opened multiple times.

enhancement
good first issue

Since we are building the coverage table programmatically, let's try to have dynamic badges for the building status and the coverage. Some refs can be found here: [https://github.com/dwyl/repo-badges](url) [https://github.com/buildkite/dynamic-build-badges](url)

In many cases it would be very useful to have DataFrames use a MultiIndex. This index would use the key fields as the different index levels. For example, if you...

enhancement

To create new objects in a model you need both the key fields and the required fields. This should be as simple as making a helper function which is nearly...

enhancement