vessim
vessim copied to clipboard
A co-simulation testbed for carbon-aware applications and systems 🍃
I have another small suggested addition. This PR is less important to me than the other PRs made this week. Instead of having to assume the current time (which I...
This is one of the solutions I suggested - fixes #203. I'm not sure it is the solution that is the best, because it changes the interface of the broker...
I was using randomly assigned values for initializing a `SimpleBattery`, and I noticed the `update` method sporadically failed at this line: https://github.com/dos-group/vessim/blob/e7fe48ecbf68c3c6b05e437ef96090fa7db8189c/vessim/storage.py#L57 This is despite the initialization being valid, and...
Working with the new interface, I now notice a shortcoming of removing the actors from the pickled Microgrid representation: From the broker, it is practically impossible to know which actor...
Currently, when starting an Actor or Controller ``` INFO | mosaik.scenario:start:280 - Starting "Actor" as "Actor-0" ... ``` is logged by mosaik. However, instead of "Actor-0" we want to display...
The documentation of specific functions in the classes related to the batteries is currently lacking. Especially the apply-method of the `DefaultStoragePolicy` is missing a docstring explaining what the return means...
Currently we are defining the real time factor which is passed to `world.run()` separately from the intervals passed to the `HttpPowerMeter` and `SilInterface`, although they depend on each other. Ideally...
- Fixes in the `SimpleBattery` regarding floating point inaccuracies when computing e-delta + a better handling of the minimum SoC - Fixed bug that crashed simulations when no Controller was...
When querying forecast in the `HistoricalSignal` using `bfill`, np.nan is returned if there is no data point available to fill back the data. Performing queries with other resample methods now...
- Renamed Attributes: - `_actor_infos_ts` to`_state_ts` - `_actor_infos` to `_state` - Added Attribute and Properties: - `_time` for current sim time, thanks @Impelon closes #208 => `time` to get `_time`...