Skip to content

Commit

Permalink
small formatting change and typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
balisujohn committed Jun 23, 2023
1 parent ec9bb08 commit a9f3548
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorials/dataset_creation/point_maze_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,8 @@ def _check_valid_cell(self, cell):
# A PD controller is a variation of the PID controller often used in classical Control Theory.
# PID combines three components Proportial Term(P), Integral Term(I) and Derivative Term (D)
#
# 1. Proportial Term(P)
# ~~~~~~~~~~~~~~~~~~~
# 1. Proportional Term (P)
# -------------------
# The proportional term in a PID controller adjusts the control action based on the current error, which
# is the difference between the desired value (setpoint) and the current value of the process variable.
# The control action is directly proportional to the error. A higher error results in a stronger control action.
Expand All @@ -181,7 +181,7 @@ def _check_valid_cell(self, cell):
# \tau = k_{p}(Error)
#
# 2. Derivative Term (D)
# ~~~~~~~~~~~~~~~~~~~
# -------------------
# The derivative term in a PD controller considers the rate of change of the error over time.
# It helps to predict the future behavior of the error. By dampening the control action based
# on the rate of change of the error, the derivative term contributes to system stability and reduces overshooting.
Expand All @@ -198,7 +198,7 @@ def _check_valid_cell(self, cell):
# \tau = k_{p}(Error) + k_{d}(d(Error) / dt)
#
# 3. Integral Term (I)
# ~~~~~~~~~~~~~~~~~~~
# -------------------
# The integral term in a PID controller integrates the cumulative error over time.
# It helps to address steady-state errors or biases that may exist in the system.
# The integral term continuously adjusts the control action based on the accumulated error,
Expand Down

0 comments on commit a9f3548

Please sign in to comment.