Skip to content

Commit

Permalink
BF: Basics of closed-loop control #1046
Browse files Browse the repository at this point in the history
  • Loading branch information
detlefarend committed Nov 10, 2024
1 parent b7ee4c6 commit d662120
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions src/mlpro/bf/control/operators/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@
## -- History :
## -- yyyy-mm-dd Ver. Auth. Description
## -- 2024-11-05 0.1.0 AP Creation and initial implementation
## -- 2024-11-10 0.2.0 DA Turned off visualization
## -------------------------------------------------------------------------------------------------

"""
Ver. 0.1.0 (2024-11-05)
Ver. 0.2.0 (2024-11-10)
This module provides an implementation of a converter that convertsdetermins the next control variable by
buffering and cumulating it.
Expand Down Expand Up @@ -40,7 +41,8 @@ class Converter (Operator):
...
"""

C_NAME = 'Converter'
C_NAME = 'Converter'
C_PLOT_ACTIVE = False

## -------------------------------------------------------------------------------------------------
def __init__(self,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
if __name__ == '__main__':
i = input(f'\n\nDimensionality (press ENTER for {num_dim}): ')
if i != '': num_dim = int(i)
i = input(f'\n\nStep rate (visualization) (press ENTER for {step_rate}): ')
i = input(f'\nStep rate (visualization) (press ENTER for {step_rate}): ')
if i != '': step_rate = int(i)


Expand Down

0 comments on commit d662120

Please sign in to comment.