Simulator๏ƒ

Simulator: the world-model contract for control/optimization problems.

A placeholder taxonomy member today: simulators become the state-transition backends of control environments (battery dispatch, microgrids) when those land. The interface mirrors gymnasium so a simulator can back an env directly.

class emflow.models.simulator.Simulator(name)[source]๏ƒ

Bases: Model, ABC

abstract reset(*, seed=None, options=None)[source]๏ƒ

Reset to an initial state; return (state, info).

abstract step(action)[source]๏ƒ

Advance one step; return (state, reward, terminated, truncated, info).