Skip to content

active

ActiveEnvironment()

Bases: TransformedObservable, Stepable, Actable[DataFrame]

Base class for active environments.

An active environment loads data in an interactive way, e.g., from a simulation or real system. The environment requires actions to be taken to advance. Data can be retrieved by observing the environment.

Initialize the active environment.

Source code in src/flowcean/core/environment/active.py
24
25
26
def __init__(self) -> None:
    """Initialize the active environment."""
    super().__init__()