Skip to content

Commit

Permalink
publish v0.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchuette committed May 18, 2019
1 parent 4deb40d commit 928a45c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions PID_pendulum/PID_control.py
Expand Up @@ -546,7 +546,7 @@ def plot(self, file_name, parameter=False):
)

plt.xlabel("$t$ (s)", fontsize=15)
plt.ylabel("$\phi$ ($2\pi$)", fontsize=15) # noqa
plt.ylabel("$\phi$ ($2\pi$)", fontsize=15) # noqa: LaTeX escape seq
plt.tick_params(labelsize=15)

plt.xlim(self.t_start, self.t_end)
Expand Down Expand Up @@ -617,7 +617,7 @@ def animate(self, anim_name):
line, = ax.plot([], [], lw=2)

plt.xlabel('$t$')
plt.ylabel('$\phi$')
plt.ylabel('$\phi$') # noqa: LaTeX escape seq

# Initialize the animation:
def init():
Expand Down Expand Up @@ -743,7 +743,7 @@ def animate(self, anim_name):
line, = ax.plot([], [], lw=2)

plt.xlabel('$t$')
plt.ylabel('$\phi$')
plt.ylabel('$\phi$') # noqa: LaTeX escape seq

# Initialize the animation:
def init():
Expand Down
15 changes: 8 additions & 7 deletions README.md
@@ -1,14 +1,15 @@
# PID pendulum controller
## Overview
This is a short description of the PID controlled pendulum project. The project illustrates several concepts of real-world PID controllers, that theoretical descriptions often disregard. At the moment this includes

- bounded controller output,

- limited controller speed,
![PyPI](https://img.shields.io/pypi/v/PID_pendulum.svg)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/PID_pendulum.svg)

- controller measurement imprecision,
## Overview
This is a short description of the PID controlled pendulum project. The project illustrates several concepts of real-world PID controllers, that theoretical descriptions often disregard. At the moment this includes

- incomplete system information.
- bounded controller output
- limited controller speed
- controller measurement imprecision
- incomplete system information

Additional features will be added in the future.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
#!/bin/python
from setuptools import find_packages, setup

version = "0.0.9"
version = "0.0.10"
description = "Visit https://github.com/PhilippSchuette/PID_pendulum for" \
" additional information."

Expand Down

0 comments on commit 928a45c

Please sign in to comment.