A database simulator that stores every input.
Project description
Midas Store
Description
This package contains a midas module providing a database simulator. This works like most other collectors for mosaik, i.e., it accepts any number of inputs and stores them in a database file.
Although this package is intended to be used with midas, you can use in any mosaik simulation scenario.
Installation
This package will usually installed automatically together with midas-mosaik if you opt-in any of the extras, e.g., base or bh.
It is available on pypi, so you can install it manually with
pip install midas-store
Usage
The complete documentation is available at https://midas-mosaik.gitlab.io/midas.
Inside of midas
To use the store inside of midas, just add store to your modules
my_scenario:
modules:
- store
- ...
and configure it with (filename is required, everything else is optional and can be left out if the default values, shown below, are used):
store_params:
filename: my_db.hdf5
step_size: 900
overwrite: False
buffer_size: 0
All simulators that have something to store will then automatically connect to the store simulator.
Any mosaik scenario
If you don't use midas, you can add the store manually to your mosaik scenario file.
First, the entry in the sim_config:
sim_config = {
"MidasHdf": {"python": "midas.modules.store:MidasHdf5"},
# ...
}
Next, you need to start the simulator (assuming a step_size of 900):
store_sim = world.start("MidasHdf", step_size=900)
Finally, the model needs to be started:
store = store_sim.Database(filename="path/to/my_db.hdf5", buffer_size=0, overwrite=False)
Afterwards, you can define world.connect(other_entity, store, attrs) as you like.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file midas_store-2.1.0a1.tar.gz.
File metadata
- Download URL: midas_store-2.1.0a1.tar.gz
- Upload date:
- Size: 8.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89127461623f8ad5c128ed481a9195b0a0586a5e4fd5d2f8f341620148d433b3
|
|
| MD5 |
c63e6c82aa6a6b3048877ab7eb4e7f95
|
|
| BLAKE2b-256 |
093dbcfd21a8c3308ddb3e0aab5587a6dbb1c616fd0bf4a8573ef65c4e078317
|
File details
Details for the file midas_store-2.1.0a1-py3-none-any.whl.
File metadata
- Download URL: midas_store-2.1.0a1-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6b4067b97209f6e8c7bf369a6debae33b0905d36459bba3431788c9ff09e44e3
|
|
| MD5 |
7f57047fa1846c52c740a1d855cdf7a3
|
|
| BLAKE2b-256 |
8538f84b015a3f193282b795a94c70b1ecf856bf43da733d89285308626d1574
|