A simulator for pandapower grids.
Project description
MIDAS Powergrid Simulator
Description
This package contains a MIDAS module providing a pandapower simulator and a number of custom powergrids.
Although this package is intended to be used with MIDAS, it does not depend from anything MIDAS-related except for the midas-util
package. You can use in any mosaik simulation scenario.
Installation
This package will usually installed automatically together with midas-mosaik
. It is available on pypi, so you can install it manually with
pip install midas-powergrid
Usage
The complete documentation is available at https://midas-mosaik.gitlab.io/midas.
Inside of MIDAS
To use the powergrid inside of MIDAS, just add powergrid
to your modules
my_scenario:
modules:
- powergrid
- ...
and configure it with (gridfile
is required, everything else is optional and can be left out if the default values, shown below, are used):
powergrid_params:
my_grid_scope:
gridfile: midasmv
grid_params: {}
step_size: 900
plotting: False
plot_path: _plots # Output path defined in runtime config
save_grid_json: False
All simulators that want to connect to this grid, will have to use my_grid_scope
as their grid_name
value. Activating the plotting will results in a considerably longer execution time. Activate it only if you really need this feature.
The gridfile can be either a path to a .json or .xlsx file, a simbench grid code, one of cigre_hv
, cigre_mv
, cigre_lv
, midasmv
, midaslv
, or bhv
, or an import path to a function or class that either returns a valid pandapower grid or is a pandapower grid itself. The grid_params
can be used to pass keywork arguments to custom grids.
Any mosaik scenario
If you don't use MIDAS, you can add the powergrid
manually to your mosaik scenario file. First, the entry in the sim_config
:
sim_config = {
"Powergrid": {"python": "midas_powergrid.simulator:PandapowerSimulator"},
# ...
}
Next, you need to start the simulator (assuming a step_size
of 900):
powergrid_sim = world.start("Powergrid", step_size=900, plotting=False, plot_path="path/to/store/plots")
Finally, the model needs to be started:
powergrid = powergrid_sim.Grid(gridfile="midasmv", grid_params={})
To connect the output of the grids' buses to another model, you have to get the list of bus models from the powergrids' children like
bus_models = [e for e in powergrid.children if "bus" in e.eid]
and then connect those models either individually or in a loop, e.g.,
for bus in bus_models:
world.connect(bus, other_entity, "vm_pu", "va_degree", "p_mw", "q_mvar")
The inputs are generally handled in the same way. Have a look at powergrid.children
to get the required entity eids.
License
This software is released under the GNU Lesser General Public License (LGPL). See the license file for more information about the details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file midas_powergrid-2.0.0a1.tar.gz
.
File metadata
- Download URL: midas_powergrid-2.0.0a1.tar.gz
- Upload date:
- Size: 41.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7ce6483c87ff7fded92689ae1e6e52d48954effce5b12ba48d4600356ac75ec |
|
MD5 | a9e7e687f17642022c7930493368221a |
|
BLAKE2b-256 | 7a05fc6470a144d05790f8400a0a41d139fc0730f98adab1f60e7e3491b42bb4 |
File details
Details for the file midas_powergrid-2.0.0a1-py3-none-any.whl
.
File metadata
- Download URL: midas_powergrid-2.0.0a1-py3-none-any.whl
- Upload date:
- Size: 48.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21e497793dbd7d34298384531ae496152a629db9e8d2e4d0840230f9ac1ed95b |
|
MD5 | e6ec414a4e710ac8a9656badc1290e59 |
|
BLAKE2b-256 | 43486559ab5de3b2495d83184669b792efa365a31a51fb1666bf5d85fb9161b8 |