energy_system
EnergySystemOffline(scenario_name, data_file, *, scenario_file=None, end=0, seed=None)
Bases: DataFrame
Offline version of the energy system environment.
Runs the simulation without interaction and stores the results in a csv file. The file is read into polars and can be used for offline learning.
Source code in src/flowcean/mosaik/energy_system.py
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 |
|
start_mosaik(scenario, *, sensors, actuators, sensor_queue, actuator_queue, sync_finished, sync_terminate, sim_finished)
Start the mosaik simulation process.
Source code in src/flowcean/mosaik/energy_system.py
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
|