Metadata-Version: 2.3
Name: adaptive-oscillator
Version: 0.1.1
Summary: Adaptive oscillator for gait phase identification.
Author: Tony Smoragiewicz
Author-email: tony.smoragiewicz@tum.de
Requires-Python: >3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: dash (>=3.1.1,<4.0.0)
Requires-Dist: loguru (>=0.7.3,<0.8.0)
Requires-Dist: matplotlib (>=3.10.3,<4.0.0)
Requires-Dist: numpy (>=2.2.3,<3.0.0)
Requires-Dist: pandas (>=2.3.0,<3.0.0)
Requires-Dist: plotly (>=6.2.0,<7.0.0)
Requires-Dist: poetry-core (>=2.1.2,<3.0.0)
Requires-Dist: pre-commit (>=4.1.0,<5.0.0)
Requires-Dist: pytest (>=8.3.5,<9.0.0)
Requires-Dist: pytest-cov (>=6.0.0,<7.0.0)
Requires-Dist: scipy (>=1.15.3,<2.0.0)
Project-URL: homepage, https://github.com/TUM-Aries-Lab/adaptive-oscillators
Description-Content-Type: text/markdown

# Adaptive Oscillator
AOs can be described as a mathematical tool able to synchronize with a rhythmic and periodic signal by continuously estimating its fundamental features (i.e. frequency, amplitude, phase, and offset). For their properties, AOs found applications in gait pattern estimation strategies, where they are used to mimic the dynamics of the neuromechanical oscillators in charge of the rhythmical human locomotion. In addition, as gait periodicity can be captured by sensors recording joint kinematics, their application does not require a complex sensory network.

## Install
To install the library run: `pip install adaptive-oscillator`

## Development
0. Install [Poetry](https://python-poetry.org/docs/#installing-with-the-official-installer)
1. `make init` to create the virtual environment and install dependencies
2. `make format` to format the code and check for errors
3. `make test` to run the test suite
4. `make clean` to delete the temporary files and directories
5. `poetry publish --build` to build and publish to https://pypi.org/project/adaptive-oscillator


## Usage
```
"""Basic usage for our module."""

def main() -> None:
    """Run a simple demonstration."""
    # Initialize system
    controller = AOController(show_plots=True)

    while True:
        try:
            self.step(t=t, th=angle, dth=angle_derivative)
        except KeyboardInterrupt as KI:
            print("Exiting...")

if __name__ == "__main__":
    main()
```

## Results
The plot below shows the results being plotted in real time.
<img width="2209" height="1016" alt="Screenshot 2025-10-06 at 2 58 21 PM" src="https://github.com/user-attachments/assets/ac6ff396-0496-4187-81ad-bfc824a72299" />

